likeExp method

Expression<bool> likeExp(
  1. Expression<String> regex
)

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

Implementation

Expression<bool> likeExp(Expression<String> regex) {
  return _LikeOperator(this, regex);
}