I have a need to remove a joined table after it has already been added via addJoin() method. Any idea how this can be done?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
You could add new methods to handle this case by hand, it's not a feature provided by Propel (actually, it doesn't make sense). I suggest you store all your join conditions in an array, then you can add/remove them. Before to create the query, just iterate over the array, and add stored conditions. |
|||
|
|