public DerivedTableCustomer(Alias alias = default) : base(alias) { this.CustomerId = this.CreateInt32Column("CustomerId"); this.Type = this.CreateInt16Column("Type"); this.Name = this.CreateStringColumn("Name"); }
public TNext Set(Int16CustomColumn column, short value) { return(this.SetGeneric(column, SqQueryBuilder.Literal(value))); }