countAll function

MssqlExpression countAll({
  1. bool big = false,
})

COUNT(*), or COUNT_BIG(*) when big.

Implementation

MssqlExpression countAll({bool big = false}) => MssqlCountAll(big: big);