【CakePHP】find()のconditionsでNOT条件を指定する。

めも。

$this->{$this->modelClass}->find('all', array(
	'conditions' => array(
		'NOT' => array(
			$this->modelClass.'.id' => array(1, 2, 3, 4)
		)
	)
));

こんな感じ。