like method

Expr<bool> like(
  1. String pattern
)

Matches pattern where % is one or more characters, and _ is one character.

This is equivalent to this LIKE pattern in SQL.

Implementation

Expr<bool> like(String pattern) => ExpressionStringLike(this, pattern);