I\'ve got a model (Listings) that has and belongs to a few different models, I\'d like to find all of this model where it\'s related model (Openhouses) have a condition. The
$this->List->find('all', array( 'contain' => array( 'conditions' => array( 'Openhouse.date >' => $openhouse_start->format('Y-m-d H:i:s'), 'Openhouse.date <' => $openhouse_end->format('Y-m-d H:i:s') ), 'order' => array('Openhouse.date DESC') ) ) )