Matches pattern where % is one or more characters, and _ is one character.
%
_
This is equivalent to this LIKE pattern in SQL.
this LIKE pattern
Expr<bool> like(String pattern) => ExpressionStringLike(this, pattern);