greaterThanOrEqual method

Expr<bool> greaterThanOrEqual(
  1. Expr<T> other
)

Check if this expression is less than other.

This is equivalent to this >= other in SQL.

Implementation

Expr<bool> greaterThanOrEqual(Expr<T> other) =>
    ExpressionGreaterThanOrEqual(this, other);