File tree Expand file tree Collapse file tree 1 file changed +12
-5
lines changed Expand file tree Collapse file tree 1 file changed +12
-5
lines changed Original file line number Diff line number Diff line change @@ -228,11 +228,18 @@ public static T3 AggregateMin<T3>(T3 column)
228
228
/// </summary>
229
229
/// <returns></returns>
230
230
public static ISqlOver < int > DenseRank ( ) => Over < int > ( "dense_rank()" ) ;
231
- /// <summary>
232
- /// count() over(order by ...)
233
- /// </summary>
234
- /// <returns></returns>
235
- public static ISqlOver < int > Count ( object column ) => Over < int > ( $ "count({ expContext . Value . ParsedContent [ "column" ] } )") ;
231
+
232
+ /// <summary>
233
+ /// ntile(5) over (order by ...)
234
+ /// </summary>
235
+ /// <returns></returns>
236
+ public static ISqlOver < int > Ntile ( int value ) => Over < int > ( $ "ntile({ value } )") ;
237
+
238
+ /// <summary>
239
+ /// count() over(order by ...)
240
+ /// </summary>
241
+ /// <returns></returns>
242
+ public static ISqlOver < int > Count ( object column ) => Over < int > ( $ "count({ expContext . Value . ParsedContent [ "column" ] } )") ;
236
243
/// <summary>
237
244
/// sum(..) over(order by ...)
238
245
/// </summary>
You can’t perform that action at this time.
0 commit comments