notContains method
Implementation
MssqlCondition notContains(String term) => MssqlLike(
this,
term,
negated: true,
escaped: true,
position: MssqlLikePosition.anywhere,
);
MssqlCondition notContains(String term) => MssqlLike(
this,
term,
negated: true,
escaped: true,
position: MssqlLikePosition.anywhere,
);