notEquals method

Expression notEquals(
  1. E? value
)
inherited

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

A non null value will include rows where the column is null.

Implementation

Expression notEquals(T? value) {
  if (value == null) {
    return _IsNotNullExpression(this);
  }

  return _IsDistinctFromExpression(this, _encodeValueForQuery(value));
}