Lazy Loading in EF Core
Lazy Loading in EF Core
Procedures to enable Lazy Loading in EF-Core
With Proxy Package
public void ConfigureServices(IServiceCollection services)
{
services.AddDbContext<EFCoreContext>(b => b.UseLazyLoadingProxies()
.UseSqlServer(ConnectionString));
}
Without Proxy Package
Is Lazy Loading Useful?
References
Last updated
