You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I have an X-to-many lazy-loaded association in Doctrine and Doctrine’s Criteria functionality to filter the associated entities, it will build and execute a query including the filters. If the associated entities were already loaded, it will filter the entities in PHP rather than running another query.
It would be super useful to have this ability in RulerZ, rather than have it load all associated entities then filter them as it does currently.
The text was updated successfully, but these errors were encountered:
We also have this as a problem to solve in our backlog. For now we've accepted the overhead of converting the collection to an iterator and having it performed in memory.
It's not a massive issue for us right now as the part of our product that uses the rules engine is in testing and not yet being deployed to customers but that time is getting closer every day.
I'm hoping to fit this in to our next sprint at work since we think we know how to solve it. We're happy to put in the initial work and develop the solution further.
If I have an X-to-many lazy-loaded association in Doctrine and Doctrine’s Criteria functionality to filter the associated entities, it will build and execute a query including the filters. If the associated entities were already loaded, it will filter the entities in PHP rather than running another query.
It would be super useful to have this ability in RulerZ, rather than have it load all associated entities then filter them as it does currently.
The text was updated successfully, but these errors were encountered: