MssqlAggregate.max constructor
MssqlAggregate.max(
- MssqlExpression operand
MAX(x).
Implementation
factory MssqlAggregate.max(MssqlExpression operand) => MssqlAggregate._(
function: MssqlAggregateFunction.max,
operand: operand,
resultType: _orderableResult(operand, 'max()'),
distinct: false,
window: null,
);