Is there a way of dynamically setting the loading strategy between two entities at load time?
For example if I have a Parent
entity that has a list of Child
entities, I may want to load the 'Parent' entity with lazy loaded children in some situations and eager loading in others.
Is there a way to do this? The mapping seems to imply its one or the other.