where_ method

MssqlQueryState where_(
  1. MssqlCondition condition
)

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,
);