and method

Find and(
  1. Expression exp
)
override

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

Implementation

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