I want to add a where clause for my 2nd level association in cakephp. In my understanding this should work but it gives me an error
$options = array(
'contain' => array(
'People',
'People' => array('User')
),
'conditions'=> array(
'User.email_address' => '[email protected]'
),
'recursive' =>1,
);
$query = $this->Organization->find('all', $options);
$options = array(
'contain' => array(
'People' => array(
'User' => array(
'conditions'=> array(
'User.email_address' => '[email protected]'
),
),
),
),
//'recursive' =>1,
);
$query = $this->Organization->find('all', $options);
Read more: