Did I get it right, that FetchEager is only working correctly for Associations and not for ManyValuedAssociations?
Find<TEnity>.FetchEager('Entity2List').RemovingDuplicatedEntities.List;
Generates this statement:
Select ...
from Entity a
left join Entity2 b on (a.id = b.Entity_ID);
But property Entity.Entity2List is not Loaded, so accessing proxy-value will fire
Select ...
from Entity2
where Entity_ID = :p_0
Is there any possibility fetching ManyValuedAssociations to it's corresponding list in a single statement?