MssqlAggregate.max constructor

MssqlAggregate.max(
  1. MssqlExpression operand
)

MAX(x).

Implementation

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