public DbOrderByExpression(DbExpressionBinding bind, DbExpression body, BaseType type, bool asc)
     : base(bind, body, DbExpressionKind.GroupBy, type)
 {
     this.Asc = asc;
 }
 public DbGroupByExpression(DbExpressionBinding bind, DbExpression body, BaseType type)
     : base(bind, body, DbExpressionKind.GroupBy, type)
 {
 }
Exemple #3
0
 public DbWhereExpression(DbExpressionBinding bind, DbExpression body, BaseType type)
     : base(bind, body, DbExpressionKind.Where, type)
 {
 }
Exemple #4
0
 public DbProjectExpression(DbExpressionBinding bind, DbExpression body, DbExpressionKind kind, BaseType type)
     : base(kind, type)
 {
     this.Source = bind;
     this.Body   = body;
 }
Exemple #5
0
 public DbSelectExpression(DbExpressionBinding bind, DbExpression body, BaseType type)
     : base(bind, body, DbExpressionKind.Select, type)
 {
 }