between method
Creates an Expression checking if the value in the column inclusively
is between the min, max values.
Implementation
Expression between(T min, T max) {
return _BetweenExpression(
this,
_encodeValueForQuery(min),
_encodeValueForQuery(max),
);
}