add method

Where add(
  1. SQL whereBody
)

Adds a SQL condition to this WHERE clause.

Implementation

Where add(SQL whereBody) {
  _whereBodies.add(whereBody);
  return this;
}