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) { }
public DbWhereExpression(DbExpressionBinding bind, DbExpression body, BaseType type) : base(bind, body, DbExpressionKind.Where, type) { }
public DbProjectExpression(DbExpressionBinding bind, DbExpression body, DbExpressionKind kind, BaseType type) : base(kind, type) { this.Source = bind; this.Body = body; }
public DbSelectExpression(DbExpressionBinding bind, DbExpression body, BaseType type) : base(bind, body, DbExpressionKind.Select, type) { }