notEquals method

Expr<bool> notEquals(
  1. Expr<DateTime?> other
)

Compare this expression to other using <> in SQL.

Implementation

Expr<bool> notEquals(Expr<DateTime?> other) => equals(other).not();