mirror of
https://github.com/doctrine/orm.git
synced 2026-04-28 00:43:22 +02:00
DDC-2400: [GH-648] Add a AddParameters method in the QueryBuilder #3012
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @doctrinebot on GitHub (Apr 13, 2013).
Originally assigned to: @guilhermeblanco on GitHub.
Jira issue originally created by user @doctrinebot:
This issue is created automatically through a Github pull request on behalf of Taluu:
Url: https://github.com/doctrine/doctrine2/pull/648
Message:
Hi,
On doctrine 2.2, when we were calling the method
setParametersto set a bunch of parameters on the QueryBuilder, each parameters were added or modified if they were already existing.That is not the case since doctrine 2.3 : each calls to
setParameterswill wipe out the other already setted parameters. I think it is logic, but still is a huge BC break, which is not really mentionned in the UPGRADE file (only the once regarding the use of an ArrayCollection is mentionned).With this PR, I added a
addParameterswhich allows to add several parameters in several calls. Here is a use case :So, as I was saying, until 2.2, you could use
setParametersin the main method (getUserWithSomething) which was calling (or not) the submethodaddSince, which could set parameters before calling thesetParametersmethod. Now, you can't do that anymore : either you need to make several calls tosetParameter:Either, I guess, you need to first retrieve all the parameters and then add them by hand :
So that's why I propose this new method in the QueryBuilder. if I'm wrong anywhere, or need more information please feel free to comment. :)
Cheers.
@doctrinebot commented on GitHub (Apr 14, 2013):
Comment created by @doctrinebot:
A related Github Pull-Request [GH-648] was closed:
https://github.com/doctrine/doctrine2/pull/648
@doctrinebot commented on GitHub (Apr 14, 2013):
Issue was closed with resolution "Invalid"
@doctrinebot commented on GitHub (Aug 4, 2014):
Comment created by @doctrinebot:
A related Github Pull-Request [GH-648] was assigned:
https://github.com/doctrine/dbal/pull/648
@doctrinebot commented on GitHub (Aug 4, 2014):
Comment created by @doctrinebot:
A related Github Pull-Request [GH-648] was unassigned:
https://github.com/doctrine/dbal/pull/648
@doctrinebot commented on GitHub (Sep 11, 2014):
Comment created by @doctrinebot:
A related Github Pull-Request [GH-648] was closed:
https://github.com/doctrine/dbal/pull/648
@doctrinebot commented on GitHub (Sep 11, 2014):
Comment created by @doctrinebot:
A related Github Pull-Request [GH-648] was assigned:
https://github.com/doctrine/dbal/pull/648