MssqlQuery.from constructor

MssqlQuery.from(
  1. String identifier, {
  2. String? as,
  3. MssqlSourceRef? ref,
})

Starts a query against identifier, such as dbo.Orders.

Implementation

factory MssqlQuery.from(
  String identifier, {
  String? as,
  MssqlSourceRef? ref,
}) => MssqlQuery.fromSource(MssqlSource(identifier, alias: as, ref: ref));