notEquals method

Expression notEquals(
  1. int value
)
inherited

Creates an Expression checking if the value in the column does not equal the specified value.

Implementation

Expression notEquals(T value) {
  return _NotEqualsExpression(this, _encodeValueForQuery(value));
}