GreaterThan method

Expr GreaterThan(
  1. Object o
)

Implementation

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