isSmallerOrEqual method

Expression<bool> isSmallerOrEqual(
  1. Expression<DT> other
)

Returns an expression that is true if this expression is smaller than or equal to he other expression.

Implementation

Expression<bool> isSmallerOrEqual(Expression<DT> other) {
  return _Comparison(this, _ComparisonOperator.lessOrEqual, other);
}