withOptions method

MssqlQueryState withOptions(
  1. MssqlQueryOptions options
)

A copy with options replaced.

Implementation

MssqlQueryState withOptions(MssqlQueryOptions options) => MssqlQueryState(
  scope: scope,
  where: where,
  orderBy: orderBy,
  options: options,
  ctes: ctes,
);