notIlike method

Expression notIlike(
  1. String value
)

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

Implementation

Expression notIlike(String value) {
  return _NotILikeExpression(this, _encodeValueForQuery(value)) |
      _IsNullExpression(this);
}