この結合に where 条件を追加し$x->getTable1()->getTable2()
て、このクエリと同じ結果を得ることはできますか?
$y = Doctrine_Query::create()
->from('Table0 t0')
->innerJoin('t0.Table1 t1')
->innerJoin('t1.Table2 t2')
->where('t2.status = "active"')
->execute->getLast();