Ejemplo n.º 1
0
 public SubQuery(User userTable)
 {
     this.UserId = userTable.UserId.AddToDerivedTable(this);
     this.Count  = this.CreateInt32Column("Count");
 }
Ejemplo n.º 2
0
 public SubQueryError()
 {
     this.UserId = this.CreateInt32Column("OtherUserId");
 }
Ejemplo n.º 3
0
 public DerivedTableCustomer(Alias alias = default) : base(alias)
 {
     this.CustomerId = this.CreateInt32Column("CustomerId");
     this.Type       = this.CreateInt16Column("Type");
     this.Name       = this.CreateStringColumn("Name");
 }
Ejemplo n.º 4
0
 public SubQueryReNamed()
 {
     this.UserId = this.CreateInt32Column("OtherUserId");
     this.Count  = this.CreateInt32Column("Count");
 }
Ejemplo n.º 5
0
 public TNext Set(Int32CustomColumn column, int value)
 {
     return(this.SetGeneric(column, SqQueryBuilder.Literal(value)));
 }