isNotDistinctFrom method
Compare this expression to value
using IS NOT DISTINCT FROM
.
This is equivalent to this IS NOT DISTINCT FROM value
in SQL.
Hence, NULL
is considered equal to NULL
.
Implementation
Expr<bool> isNotDistinctFrom(Expr<bool?> value) =>
ExpressionIsNotDistinctFrom(this, value);