MssqlQuery.fromParts constructor

MssqlQuery.fromParts(
  1. List<String> parts, {
  2. String? as,
  3. 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));