notLike method

Expression notLike(
  1. String value
)

Creates an Expression checking if the value in the column is NOT LIKE the specified value. See Postgresql docs for more info on the LIKE operator.

Implementation

Expression notLike(String value) {
  return _NotLikeExpression(this, _encodeValueForQuery(value)) |
      _IsNullExpression(this);
}