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
Is there an EF core alternative to the following method used by 'Telerik Data Access' to define eager loading? I find this implementation to be quicker/simpler then the 'Include/ThenInclude' method. Especially when wanting to load multiple properties of an already navigational property.
It seems like you're looking for explicit loading, though I'm not familiar with Telerik Data Access so I could be wrong. Though be aware of adding extra unneeded database roundtrips with this kind of technique - this makes especially little sense with one-to-one (reference) navigations, where eagerly loading with Include is more efficient.
If this doesn't correspond to what you're looking for, please post a more complete description of what you need.
I'm currently migrating from Telerik Data Access.
Is there an EF core alternative to the following method used by 'Telerik Data Access' to define eager loading? I find this implementation to be quicker/simpler then the 'Include/ThenInclude' method. Especially when wanting to load multiple properties of an already navigational property.
The text was updated successfully, but these errors were encountered: