greaterThanOrEqualValue method

Expr<bool> greaterThanOrEqualValue(
  1. String other
)

Check if this expression is less than other.

This is equivalent to this >= other in SQL.

Warning

For non-ascii characters the behavior may depend on database specifics and configuration.

Implementation

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