mirror of
https://github.com/doctrine/orm.git
synced 2026-03-23 22:42:18 +01:00
DDC-1975: Binding entities to query parameters throws exception on new entity #2491
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 (Aug 10, 2012).
Originally assigned to: @beberlei on GitHub.
Jira issue originally created by user goetas:
I have this entities:
when run this query:
i get the exception: Binding entities to query parameters only allowed for entities that have an identifier.
the expected query is:
SELECT * FROM user WHERE phone_id = NULL;
the involved ORM component is AbstractQuery::convertObjectParameterToScalarValue
changing this method, form
to
.
the modified method check if the 'phone' entity state is new, and if it is true return null.