ExpressionBool extension
Extension methods for bool expressions.
Methods
-
and<
R extends bool?> (Expr< R> other) → Expr<R> -
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?> other) → Expr<bool?> -
Available on Expr<
Compare this expression tobool> , provided by the ExpressionBool extensionotherusing=in SQL. -
equalsValue(
bool? other) → Expr< bool?> -
Available on Expr<
Compare this expression tobool> , provided by the ExpressionBool extensionotherusing=in SQL. -
not(
) → Expr< bool> -
Available on Expr<
Negate this expression.bool> , provided by the ExpressionBool extension -
notEquals(
Expr< bool> other) → Expr<bool> -
Available on Expr<
Compare this expression tobool> , provided by the ExpressionBool extensionotherusing<>in SQL. -
notEqualsValue(
bool other) → Expr< bool> -
Available on Expr<
Compare this expression tobool> , provided by the ExpressionBool extensionotherusing<>in SQL. -
or<
R extends bool?> (Expr< R> other) → Expr<R> -
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