Or method

Expr Or(
  1. Expr exp
)

Implementation

Expr Or(Expr exp) {
  return new BinaryExpression(this, "OR", exp)..fieldType = dbType.Bool;
}