at method

MssqlSourceRef at({
  1. String? schema,
  2. String? table,
})

This source under another schema or name.

What at(schema:, table:) produces. Rebinding a query's root has to rebind its columns too, and a column that held a fixed qualifier could not be rebound at all.

Implementation

MssqlSourceRef at({String? schema, String? table}) =>
    MssqlSourceRef(schema: schema ?? this.schema, table: table ?? this.table);