setQuery() public method

Set the query criteria.
See also: Builder::setQueryArray()
public setQuery ( array $query )
$query array
Example #1
0
 /**
  * Set the expression's query criteria.
  *
  * @see Expr::setQuery()
  * @param array $query
  * @return self
  */
 public function setQueryArray(array $query)
 {
     $this->expr->setQuery($query);
     return $this;
 }