where_ method
A copy with condition appended to where.
Implementation
MssqlQueryState where_(MssqlCondition condition) => MssqlQueryState(
scope: scope,
where: <MssqlCondition>[...where, condition],
orderBy: orderBy,
options: options,
ctes: ctes,
);