/**
  * The default catch all wrapper for WP_Query parameters.
  * @param  string $field
  * @param  mixed $value
  * @return QueriableEntity
  */
 public function where($field, $value)
 {
     $this->reloadQueryAdapter();
     $this->activeQuery->where($field, $value);
     return $this;
 }