like method

Expression<bool> like(
  1. String regex
)

Whether this column matches the given pattern. For details on what patters are valid and how they are interpreted, check out this tutorial.

Implementation

Expression<bool> like(String regex) {
  return _LikeOperator(this, Variable.withString(regex));
}