Exemplo n.º 1
0
 public SqlWindowClause(IReadOnlyList <PartitionByExpr> partitionBy, IReadOnlyList <OrderByExpr> orderBy, SqlWinFrame frame)
 {
     PartitionBy = partitionBy;
     OrderBy     = orderBy;
     Frame       = frame;
 }
Exemplo n.º 2
0
 public SqlWindowClause SetFrame(SqlWinFrame frame) =>
 new SqlWindowClause(null, null, frame);