MssqlWindowExpression.denseRank constructor
MssqlWindowExpression.denseRank(
- MssqlWindow over
DENSE_RANK() OVER (…).
Implementation
factory MssqlWindowExpression.denseRank(MssqlWindow over) =>
MssqlWindowExpression._(
function: MssqlWindowFunction.denseRank,
arguments: const <MssqlExpression>[],
window: over,
resultType: const MssqlColumnType(
type: MssqlType.int64,
nullable: false,
),
literalSuffix: '',
);