Hello,

All is in title i think.
In my schema, i have a parent's object : ObjectPoint, which only have 
relation to Point's object.
Then, i have childrens : MediaPoint, ItemPoint, ObiwanPoint etc. which have 
respectively relations to Media, Item and Obiwan's object.

In my query, i wich to do something like :
$q = Doctrine::getTable('Point')->createQuery('p')
  ->innerJoin('p.ObjectPoint op')
  ->leftJoin('op.Media m')
  ->leftJoin('op.Item i')
  ->leftJoin('op.Obiwan o')
  ->execute();

But of course, it answers that he doesn't know "Media/Item/Obiwan" relations 
onto ObjectPoint...

Is it possible to do it without destroying my schema ?

Thancks in advance :)

-- 
If you want to report a vulnerability issue on symfony, please send it to 
security at symfony-project.com

You received this message because you are subscribed to the Google
Groups "symfony developers" group.
To post to this group, send email to symfony-devs@googlegroups.com
To unsubscribe from this group, send email to
symfony-devs+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/symfony-devs?hl=en

Reply via email to