endsWith method

MssqlCondition endsWith(
  1. String term
)

LIKE '%term', with term escaped.

Implementation

MssqlCondition endsWith(String term) => MssqlLike(
  this,
  term,
  negated: false,
  escaped: true,
  position: MssqlLikePosition.ending,
);