isNull method

Expr<bool> isNull()

Check if this expression is NULL.

This is equivalent to this IS NULL in SQL.

Implementation

Expr<bool> isNull() => isNotDistinctFrom(toExpr(null));