isSmallerThan method

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

Returns an expression that is true if this expression is strictly smaller than the other expression.

Implementation

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