where method

Find where(
  1. Expression expression
)
override

Adds an to 'where' expression clause.

Implementation

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