symfony - How i can use full outer join in symfony2 by query builder? -


i want use full outer join querybuilder function. left join used code:

$qb = $qb->select('person')         ->from('s118ebrahimibundle:personentity', 'person')         ->leftjoin('person.phoneentities', 'phone'); 

but dont know how can perform full outer join!

as can see doctrine2 documentation, isn't possible perform outerjoin (with query builder help, obviously).
2 operation can perform leftjoin , innerjoin

i suppose have write (as plain query, not through query builder)


Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -