recreateAt abstract method

S recreateAt(
  1. MssqlQueryContext<TRow> context,
  2. MssqlQueryState state,
  3. List<MssqlRelation<TRow, Object?>> included
)

Generated: OrdersQuery(context, state, included) over another context.

Separate from recreate because recreate reuses the captured context, and rebinding the table needs a new one. Only at calls it.

Implementation

S recreateAt(
  MssqlQueryContext<TRow> context,
  MssqlQueryState state,
  List<MssqlRelation<TRow, Object?>> included,
);