like method

MssqlCondition like(
  1. String pattern
)

LIKE, with %, _ and [ in pattern treated as literal text.

This is the safe reading, so it is the unnamed one: a % typed into a search box matches a %. Use likeRaw for wildcard semantics.

Implementation

MssqlCondition like(String pattern) =>
    MssqlLike(this, pattern, negated: false, escaped: true);