ExpressionDateTime extension

Extension methods for DateTime expressions.

on

Methods

equals(Expr<DateTime?> value) Expr<bool>

Available on Expr<DateTime>, provided by the ExpressionDateTime extension

Compare this expression to value using = in SQL coalesced to FALSE.
equalsValue(DateTime? value) Expr<bool>

Available on Expr<DateTime>, provided by the ExpressionDateTime extension

Compare this expression to value using = in SQL coalesced to FALSE.
isAfter(Expr<DateTime> value) Expr<bool>

Available on Expr<DateTime>, provided by the ExpressionDateTime extension

Check if this expression is after value.
isAfterValue(DateTime value) Expr<bool>

Available on Expr<DateTime>, provided by the ExpressionDateTime extension

Check if this expression is after value.
isBefore(Expr<DateTime> value) Expr<bool>

Available on Expr<DateTime>, provided by the ExpressionDateTime extension

Check if this expression is before value.
isBeforeValue(DateTime value) Expr<bool>

Available on Expr<DateTime>, provided by the ExpressionDateTime extension

Check if this expression is before value.
notEquals(Expr<DateTime?> value) Expr<bool>

Available on Expr<DateTime>, provided by the ExpressionDateTime extension

Compare this expression to value using <> in SQL.
notEqualsValue(DateTime? value) Expr<bool>

Available on Expr<DateTime>, provided by the ExpressionDateTime extension

Compare this expression to value using <> in SQL.

Operators

operator <(Expr<DateTime> other) Expr<bool>

Available on Expr<DateTime>, provided by the ExpressionDateTime extension

Check if this expression is less than other.
operator <=(Expr<DateTime> other) Expr<bool>

Available on Expr<DateTime>, provided by the ExpressionDateTime extension

Check if this expression is less than other.
operator >(Expr<DateTime> other) Expr<bool>

Available on Expr<DateTime>, provided by the ExpressionDateTime extension

Check if this expression is less than other.
operator >=(Expr<DateTime> other) Expr<bool>

Available on Expr<DateTime>, provided by the ExpressionDateTime extension

Check if this expression is less than other.