Exemplo n.º 1
0
 public DerivedTableCustomer(Alias alias = default) : base(alias)
 {
     this.CustomerId = this.CreateInt32Column("CustomerId");
     this.Type       = this.CreateInt16Column("Type");
     this.Name       = this.CreateStringColumn("Name");
 }
Exemplo n.º 2
0
 public TNext Set(StringCustomColumn column, string value)
 {
     return(this.SetGeneric(column, SqQueryBuilder.Literal(value)));
 }