-
Notifications
You must be signed in to change notification settings - Fork 2.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[GH-8471] undeprecate partials completly #11647
[GH-8471] undeprecate partials completly #11647
Conversation
Probably not the best place, but I don't know where else: This actually takes away a huge burden. I already invested many hours in replacing PARTIAL with the new fetchMode() but many use-cases were not covered and I wonder (and hope) that those are still on the roadmap ... but removing these specific deprecation actually improves my DX a lot. Thank you 👍 |
Is it correct and wanted that the deprecation notice is still there in https://github.com/beberlei/doctrine2/blob/fc299b184b6c8e918ba08e4328687db126699ccd/src/UnitOfWork.php#L2991-L2996? |
Why are you linking to another repository than |
Because I copied it from the merge request. Here you go: https://github.com/doctrine/orm/blob/2.20.0/src/UnitOfWork.php#L2991-L2996 |
@laufhannes good question, i need to look what the difference between |
This undeprecates SELECT PARTIAL DQL queries.
EntityManager::getPartialReference
is still deprecated, since it will be indistinguishable fromEntityManager::getReference
in the future.Related: