MssqlAggregate.min constructor

MssqlAggregate.min(
  1. MssqlExpression operand
)

MIN(x), over anything SQL Server can order.

Implementation

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