Ejemplo n.º 1
0
 public SelectClause SetLimit(int?value) => Immutable.Set(this, x => x.Limit, value);
Ejemplo n.º 2
0
 public SelectClause AddOrderBy(OrderByExpr value) => Immutable.Add(this, x => x.OrderBy, value);
Ejemplo n.º 3
0
 public SelectClause AddGroupBy(GroupByExpr value) => Immutable.Add(this, x => x.GroupBy, value);
Ejemplo n.º 4
0
 public SelectClause AddDistinctOn(LambdaExpression distinctOn) => Immutable.Add(this.SetDistinctType(SelectType.DistinctOn), x => x.DistinctOn, distinctOn);
Ejemplo n.º 5
0
 public SelectClause AddUnion(UnionClause value) => Immutable.Add(this, x => x.Unions, value);
Ejemplo n.º 6
0
 public SelectClause SetDistinctType(SelectType type) => Immutable.Set(this, x => x.DistinctType, type);
Ejemplo n.º 7
0
 public SelectClause SetWindow(WindowClauses window) => Immutable.Set(this, x => x.Window, window);
Ejemplo n.º 8
0
 public SelectClause SetWhere <TIn, TWin>(Expression <Func <TIn, TWin, bool> > value) => Immutable.Set(this, x => x.Where, value);
Ejemplo n.º 9
0
 public SelectClause SetSelect <TIn, TWin, TOut>(Expression <Func <TIn, TWin, TOut> > select) => Immutable.Set(this, x => x.Select, select);
Ejemplo n.º 10
0
 public SelectClause SetFrom(IFromListItem fromItem) => Immutable.Set(this, x => x.From, fromItem);