lessThanValue method

Expr<bool> lessThanValue(
  1. T other
)

Check if this expression is less than other.

This is equivalent to this < other in SQL.

Implementation

Expr<bool> lessThanValue(T other) => lessThan(toExpr(other));