Marco Pivetta
Marco Pivetta
The ObjectManager implemented within ChangeSet should be removed or moved to a different repository. It is out of the scope of the project.
Currently, repositories have access to the identity map in changeset. This should probably be handled by the loaders instead, while repositories could possibly completely disappear from this repository.
Currently, the biggest problem is not to build transactions, but what they should support. Possible todos are: - synchronizing transactions - wrapping closures/callables - rollback/commit strategies - api for explicit...
Applies to transaction wrappers
As it currently stands, iteration over a DQL query like following will fail due to `Query#iterate()` not supporting it in ORM (https://github.com/doctrine/orm/issues/5868): ``` SELECT foo, bar FROM MyEntity foo LEFT...
This might be a really hard one to solve, but the idea is simple: lazy services are not necessarily the front-facing services inside your app. Let's say you have a...