MssqlAggregate.countBig constructor
MssqlAggregate.countBig(
- MssqlExpression operand, {
- bool distinct = false,
COUNT_BIG(x), for a count that can pass 2^31.
Implementation
factory MssqlAggregate.countBig(
MssqlExpression operand, {
bool distinct = false,
}) => MssqlAggregate._(
function: MssqlAggregateFunction.countBig,
operand: operand,
resultType: const MssqlColumnType(type: MssqlType.int64, nullable: false),
distinct: distinct,
window: null,
);