operator | method

Expression operator |(
  1. Expression other
)

Database OR operator.

Implementation

Expression operator |(Expression other) {
  return _OrExpression(this, other);
}