GreaterOrEqual method

Expr GreaterOrEqual(
  1. Object o
)

Implementation

Expr GreaterOrEqual(Object o) {
  if (o is Expr) {
    return new BinaryExpression(this, ">=", o)..fieldType = dbType.Bool;
  }
  return GreaterOrEqual(ValueExpr(o, dbType.Double));
}