likeExp method

Expression<bool> likeExp(
  1. Expression<String> regex, {
  2. Expression<String>? escape,
})

Whether this column matches the given expression.

For details on which patterms are valid and how they are interpreted, check out this tutorial or the SQLite documentation.

Implementation

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