over method

MssqlAggregate over(
  1. MssqlWindow window
)

Returns this aggregate evaluated over window.

Implementation

MssqlAggregate over(MssqlWindow window) => MssqlAggregate._(
  function: function,
  operand: operand,
  resultType: resultType,
  distinct: distinct,
  window: window,
);