isBiggerThanValue method
Returns an expression that is true if this expression is strictly bigger than the other value.
Implementation
Expression<bool> isBiggerThanValue(DT other) {
return isBiggerThan(variable(other));
}
Returns an expression that is true if this expression is strictly bigger than the other value.
Expression<bool> isBiggerThanValue(DT other) {
return isBiggerThan(variable(other));
}