While using Doctrine in a Symfony project I've come into the situation where I need to apply a condition and then one of two following conditions (which both happen to be sub-queries). I know of the andWhere() and orWhere() functions, but am having trouble using these to generate things like: WHERE cond1 AND ( cond2 OR cond3)
|
|
|||||
|
|
|
You can do this whith DQL:
So $models will be a Doctrine_Collection with all found elements. |
||
|
|
|
|
I haven't heard of this tool but shouldnt something like
work? or whatever the actual syntax is. feel free to tell me if i'm wrong and i'll delete it and slunk off in a corner ;) |
||
|
|
|
|
for the cond2 OR cond3 use wherein where cond1 and wherein cond2 or wherein cond3 hopefully this gets you started |
||
|
