public execute () Executes a find using the parameters built with the criteria
public distinct (mixed $distinct) Sets SELECT DISTINCT / SELECT ALL flag
public conditions (mixed $conditions) Adds the conditions parameter to the criteria
public Phalcon\Mvc\Model\Criteria columns (string | array $columns) Sets the columns to be queried $criteria->columns(array('id', 'name'));
public cache (array $cache) Sets the cache options in the criteria This method replaces all previously set cache options
public bindTypes (array $bindTypes) Sets the bind types in the criteria This method replaces all previously set bound parameters
public bind (array $bindParams, [mixed $merge]) Sets the bound parameters in the criteria This method replaces all previously set bound parameters
public betweenWhere (mixed $expr, mixed $minimum, mixed $maximum) Appends a BETWEEN condition to the current conditions $criteria->betweenWhere('price', 100.25, 200.50);
public andWhere (mixed $conditions, [mixed $bindParams], [mixed $bindTypes]) Appends a condition to the current conditions using an AND operator
public addWhere (mixed $conditions, [mixed $bindParams], [mixed $bindTypes]) Appends a condition to the current conditions using an AND operator (deprecated)
Page 162 of 382