MssqlQuery.from constructor
MssqlQuery.from(
- String identifier, {
- String? as,
- 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));