not method

Expr<bool> not()

Negate this expression.

This is equivalent to NOT this in SQL.

Also available as ~ operator.

Implementation

Expr<bool> not() => ExpressionBoolNot(this);