ExpressionNullableBool extension
Extension methods for nullable bool expressions.
Methods
-
equals(
Expr< bool> value) → Expr<bool> -
Available on Expr<
Compare this expression tobool?> , provided by the ExpressionNullableBool extensionvalue
using=
in SQL coalesced toFALSE
. -
equalsUnlessNull(
Expr< bool?> value) → Expr<bool?> -
Available on Expr<
Compare this expression tobool?> , provided by the ExpressionNullableBool extensionvalue
using=
. -
equalsValue(
bool value) → Expr< bool> -
Available on Expr<
Compare this expression tobool?> , provided by the ExpressionNullableBool extensionvalue
using=
in SQL coalesced toFALSE
. -
isFalse(
) → Expr< bool> -
Available on Expr<
True, if this expression evaluates tobool?> , provided by the ExpressionNullableBool extensionFALSE
. -
isNotDistinctFrom(
Expr< bool?> value) → Expr<bool> -
Available on Expr<
Compare this expression tobool?> , provided by the ExpressionNullableBool extensionvalue
usingIS NOT DISTINCT FROM
. -
isNotNull(
) → Expr< bool> -
Available on Expr<
Check if this expression is notbool?> , provided by the ExpressionNullableBool extensionNULL
. -
isNull(
) → Expr< bool> -
Available on Expr<
Check if this expression isbool?> , provided by the ExpressionNullableBool extensionNULL
. -
isTrue(
) → Expr< bool> -
Available on Expr<
True, if this expression evaluates tobool?> , provided by the ExpressionNullableBool extensionTRUE
. -
notEquals(
Expr< bool> value) → Expr<bool> -
Available on Expr<
Compare this expression tobool?> , provided by the ExpressionNullableBool extensionvalue
using<>
in SQL. -
notEqualsValue(
bool value) → Expr< bool> -
Available on Expr<
Compare this expression tobool?> , provided by the ExpressionNullableBool extensionvalue
using<>
in SQL. -
orElse(
Expr< bool> value) → Expr<bool> -
Available on Expr<
If this expression isbool?> , provided by the ExpressionNullableBool extensionNULL
, usevalue
instead. -
orElseValue(
bool value) → Expr< bool> -
Available on Expr<
If this expression isbool?> , provided by the ExpressionNullableBool extensionNULL
, usevalue
instead.