notEqualsValue method

Expr<bool> notEqualsValue(
  1. bool? other
)

Compare this expression to other using <> in SQL.

Implementation

Expr<bool> notEqualsValue(bool? other) => notEquals(toExpr(other));