operator | method

Expression operator |(
  1. dynamic other
)

Database OR operator.

Implementation

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

  return _OrExpression(this, EscapedExpression(other));
}