startsWith method
LIKE 'term%', with term escaped.
Implementation
MssqlCondition startsWith(String term) => MssqlLike(
this,
term,
negated: false,
escaped: true,
position: MssqlLikePosition.starting,
);
LIKE 'term%', with term escaped.
MssqlCondition startsWith(String term) => MssqlLike(
this,
term,
negated: false,
escaped: true,
position: MssqlLikePosition.starting,
);