ExpressionBool extension
Extension methods for bool expressions.
Methods
-
and(
Expr< bool> other) → Expr<bool> -
Available on Expr<
Logical AND.bool> , provided by the ExpressionBool extension -
asInt(
) → Expr< int> -
Available on Expr<
Cast as integer.bool> , provided by the ExpressionBool extension -
equals(
Expr< bool?> value) → Expr<bool> -
Available on Expr<
Compare this expression tobool> , provided by the ExpressionBool extensionvalue
using=
in SQL coalesced toFALSE
. -
equalsValue(
bool? value) → Expr< bool> -
Available on Expr<
Compare this expression tobool> , provided by the ExpressionBool extensionvalue
using=
in SQL coalesced toFALSE
. -
not(
) → Expr< bool> -
Available on Expr<
Negate this expression.bool> , provided by the ExpressionBool extension -
notEquals(
Expr< bool?> value) → Expr<bool> -
Available on Expr<
Compare this expression tobool> , provided by the ExpressionBool extensionvalue
using<>
in SQL. -
notEqualsValue(
bool? value) → Expr< bool> -
Available on Expr<
Compare this expression tobool> , provided by the ExpressionBool extensionvalue
using<>
in SQL. -
or(
Expr< bool> other) → Expr<bool> -
Available on Expr<
Logical OR.bool> , provided by the ExpressionBool extension
Operators
-
operator &(
Expr< bool> other) → Expr<bool> -
Available on Expr<
Logical AND.bool> , provided by the ExpressionBool extension -
operator |(
Expr< bool> other) → Expr<bool> -
Available on Expr<
Logical OR.bool> , provided by the ExpressionBool extension -
operator ~(
) → Expr< bool> -
Available on Expr<
Negate this expression.bool> , provided by the ExpressionBool extension