ExpressionEquals<T extends Object> class
final
SQL Expression using =
.
- Inheritance
-
- Object
- Expr<
bool?> - BinaryOperationExpression<
T?, bool?> - ExpressionEquals
- Available extensions
Constructors
-
ExpressionEquals.new(Expr<
T?> left, Expr<T?> right)
Properties
Methods
-
and(
Expr< bool> other) → Expr<bool> -
Available on Expr<
Logical AND.bool> , provided by the ExpressionBool extension -
asBlob(
) → Expr< Uint8List?> -
Available on Expr<
Cast as Expr<Uint8List?> usingNull> , provided by the ExpressionNull extensionCAST(NULL AS BLOB)
. -
asBool(
) → Expr< bool?> -
Available on Expr<
Cast as Expr<bool?> usingNull> , provided by the ExpressionNull extensionCAST(NULL AS BOOLEAN)
. -
asDateTime(
) → Expr< DateTime?> -
Available on Expr<
Cast as Expr<DateTime?> usingNull> , provided by the ExpressionNull extensionCAST(NULL AS TIMESTAMP)
. -
asDouble(
) → Expr< double?> -
Available on Expr<
Cast as Expr<double?> usingNull> , provided by the ExpressionNull extensionCAST(NULL AS DOUBLE PRECISION)
. -
asInt(
) → Expr< int> -
Available on Expr<
Cast as integer.bool> , provided by the ExpressionBool extension -
asInt(
) → Expr< int?> -
Available on Expr<
Cast as Expr<int?> usingNull> , provided by the ExpressionNull extensionCAST(NULL AS BIGINT)
. -
asString(
) → Expr< String?> -
Available on Expr<
Cast as Expr<String?> usingNull> , provided by the ExpressionNull extensionCAST(NULL AS TEXT)
. -
equals(
Expr< bool?> value) → Expr<bool> -
Available on Expr<
Compare this expression tobool> , provided by the ExpressionBool extensionvalue
using=
in SQL coalesced toFALSE
. -
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 ExpressionBool extensionvalue
using=
in SQL coalesced toFALSE
. -
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
. -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
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. -
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 ExpressionBool extensionvalue
using<>
in SQL. -
notEqualsValue(
bool value) → Expr< bool> -
Available on Expr<
Compare this expression tobool?> , provided by the ExpressionNullableBool extensionvalue
using<>
in SQL. -
or(
Expr< bool> other) → Expr<bool> -
Available on Expr<
Logical OR.bool> , provided by the ExpressionBool extension -
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. -
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator &(
Expr< bool> other) → Expr<bool> -
Available on Expr<
Logical AND.bool> , provided by the ExpressionBool extension -
operator ==(
Object other) → bool -
The equality operator.
inherited
-
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