or method

Find or(
  1. Expression expression
)
override

Adds an 'or' expression to 'where' clause.

Implementation

Find or(Expression expression) {
  _where = _where.or(expression);
  return this;
}