ExpressionDateTime extension
Extension methods for DateTime expressions.
Methods
-
equals(
Expr< DateTime?> value) → Expr<bool> -
Available on Expr<
Compare this expression toDateTime> , provided by the ExpressionDateTime extensionvalue
using=
in SQL coalesced toFALSE
. -
equalsValue(
DateTime? value) → Expr< bool> -
Available on Expr<
Compare this expression toDateTime> , provided by the ExpressionDateTime extensionvalue
using=
in SQL coalesced toFALSE
. -
isAfter(
Expr< DateTime> value) → Expr<bool> -
Available on Expr<
Check if this expression is afterDateTime> , provided by the ExpressionDateTime extensionvalue
. -
isAfterValue(
DateTime value) → Expr< bool> -
Available on Expr<
Check if this expression is afterDateTime> , provided by the ExpressionDateTime extensionvalue
. -
isBefore(
Expr< DateTime> value) → Expr<bool> -
Available on Expr<
Check if this expression is beforeDateTime> , provided by the ExpressionDateTime extensionvalue
. -
isBeforeValue(
DateTime value) → Expr< bool> -
Available on Expr<
Check if this expression is beforeDateTime> , provided by the ExpressionDateTime extensionvalue
. -
notEquals(
Expr< DateTime?> value) → Expr<bool> -
Available on Expr<
Compare this expression toDateTime> , provided by the ExpressionDateTime extensionvalue
using<>
in SQL. -
notEqualsValue(
DateTime? value) → Expr< bool> -
Available on Expr<
Compare this expression toDateTime> , provided by the ExpressionDateTime extensionvalue
using<>
in SQL.
Operators
-
operator <(
Expr< DateTime> other) → Expr<bool> -
Available on Expr<
Check if this expression is less thanDateTime> , provided by the ExpressionDateTime extensionother
. -
operator <=(
Expr< DateTime> other) → Expr<bool> -
Available on Expr<
Check if this expression is less thanDateTime> , provided by the ExpressionDateTime extensionother
. -
operator >(
Expr< DateTime> other) → Expr<bool> -
Available on Expr<
Check if this expression is less thanDateTime> , provided by the ExpressionDateTime extensionother
. -
operator >=(
Expr< DateTime> other) → Expr<bool> -
Available on Expr<
Check if this expression is less thanDateTime> , provided by the ExpressionDateTime extensionother
.