ExpressionNum<T extends num> extension
- on
-
- Expr<
T>
- Expr<
Methods
-
equals(
Expr< T?> value) → Expr<bool> -
Available on Expr<
Compare this expression toT> , provided by the ExpressionNum extensionvalue
using=
in SQL coalesced toFALSE
. -
equalsValue(
T? value) → Expr< bool> -
Available on Expr<
Compare this expression toT> , provided by the ExpressionNum extensionvalue
using=
in SQL coalesced toFALSE
. -
greaterThan(
Expr< T> other) → Expr<bool> -
Available on Expr<
Check if this expression is less thanT> , provided by the ExpressionNum extensionother
. -
greaterThanOrEqual(
Expr< T> other) → Expr<bool> -
Available on Expr<
Check if this expression is less thanT> , provided by the ExpressionNum extensionother
. -
greaterThanOrEqualValue(
T other) → Expr< bool> -
Available on Expr<
Check if this expression is less thanT> , provided by the ExpressionNum extensionother
. -
greaterThanValue(
T other) → Expr< bool> -
Available on Expr<
Check if this expression is less thanT> , provided by the ExpressionNum extensionother
. -
lessThan(
Expr< T> other) → Expr<bool> -
Available on Expr<
Check if this expression is less thanT> , provided by the ExpressionNum extensionother
. -
lessThanOrEqual(
Expr< T> other) → Expr<bool> -
Available on Expr<
Check if this expression is less thanT> , provided by the ExpressionNum extensionother
. -
lessThanOrEqualValue(
T other) → Expr< bool> -
Available on Expr<
Check if this expression is less thanT> , provided by the ExpressionNum extensionother
. -
lessThanValue(
T other) → Expr< bool> -
Available on Expr<
Check if this expression is less thanT> , provided by the ExpressionNum extensionother
. -
notEquals(
Expr< T?> value) → Expr<bool> -
Available on Expr<
Compare this expression toT> , provided by the ExpressionNum extensionvalue
using<>
in SQL. -
notEqualsValue(
T? value) → Expr< bool> -
Available on Expr<
Compare this expression toT> , provided by the ExpressionNum extensionvalue
using<>
in SQL.
Operators
-
operator <(
Expr< T> other) → Expr<bool> -
Available on Expr<
Check if this expression is less thanT> , provided by the ExpressionNum extensionother
. -
operator <=(
Expr< T> other) → Expr<bool> -
Available on Expr<
Check if this expression is less thanT> , provided by the ExpressionNum extensionother
. -
operator >(
Expr< T> other) → Expr<bool> -
Available on Expr<
Check if this expression is less thanT> , provided by the ExpressionNum extensionother
. -
operator >=(
Expr< T> other) → Expr<bool> -
Available on Expr<
Check if this expression is less thanT> , provided by the ExpressionNum extensionother
.