Pour trouver un id dont la valeur est égale à l'id d'un tableau d'id:
$this->YourModel->find('all', array(
'conditions' => array(
"YourModel.id" => array(1, 2, 3, 4)
)
));
Comment puis-je faire le contraire, trouver des éléments dont les identifiants sont différents d'un tableau d'identifiants?
Cela devrait fonctionner:
$this->YourModel->find('all', array(
'conditions' => array(
"NOT" => array( "YourModel.id" => array(1, 2, 3, 4) )
)
));
http://book.cakephp.org/2.0/en/models/retrieving-your-data.html#complex-find-conditions