greaterThanOrEqualValue method

Expr<bool> greaterThanOrEqualValue(
  1. T other
)

Check if this expression is less than other.

This is equivalent to this >= other in SQL.

Implementation

Expr<bool> greaterThanOrEqualValue(T other) =>
    greaterThanOrEqual(toExpr(other));