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