MssqlQuery.fromParts constructor
MssqlQuery.fromParts(
- List<
String> parts, { - String? as,
- MssqlSourceRef? ref,
Starts a query against a source whose parts are already separated; see MssqlSource.parts.
Implementation
factory MssqlQuery.fromParts(
List<String> parts, {
String? as,
MssqlSourceRef? ref,
}) => MssqlQuery.fromSource(MssqlSource.parts(parts, alias: as, ref: ref));