Predicate extension
Boolean composition using SQL's three-valued NULL semantics.
Methods
-
and(
Expr< bool?> other) → Expr<bool?> -
Available on Expr<
Requires both predicates to be true.bool?> , provided by the Predicate extension -
not(
) → Expr< bool?> -
Available on Expr<
Negates this predicate; SQL NULL remains unknown.bool?> , provided by the Predicate extension -
or(
Expr< bool?> other) → Expr<bool?> -
Available on Expr<
Requires either predicate to be true.bool?> , provided by the Predicate extension