HI,
I try to translate this query :
SELECT *
FROM `reunion` , lieu
WHERE reunion.lieu_reunion = lieu.id_lieu
to propel query :
$c=new Criteria();
$c->addJoin(ReunionPeer::LIEU_REUNION,LieuPeer::ID_LIEU, Criteria::LEFT_JOIN);
$this->reunions = ReunionPeer::doSelect($c);
But in my template, when I made a print_r($reunions), the field "ville" (from the table 'lieu') is not present.
Why ??