Example #1
0
 public static Expression Over(Constructor.dbWin func, Dictionary <string, Constructor.dbOrd> orderBy, string[] partitionBy)
 {
     return(new Expression(dbWTy.win, default(dbAgr), func, "NULL", orderBy, partitionBy));
 }
Example #2
0
 public static Expression Over(Constructor.dbWin func, string[] orderBy, string[] partitionBy)
 {
     return(new Expression(dbWTy.win, default(dbAgr), func, "NULL", orderBy.ToDictionary(s => s, s => dbOrd.Asc), partitionBy));
 }