From 9cf3e6ed15daa4f38889e8d1b303bd4cf05a3829 Mon Sep 17 00:00:00 2001 From: Tom Dykstra Date: Tue, 9 Oct 2018 11:51:38 -0700 Subject: [PATCH] Correct note about lazy loading (#8934) Related to #8910 [Internal review link](https://review.docs.microsoft.com/en-us/aspnet/core/data/ef-rp/read-related-data?branch=pr-en-us-8934&tabs=visual-studio) --- aspnetcore/data/ef-rp/read-related-data.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/data/ef-rp/read-related-data.md b/aspnetcore/data/ef-rp/read-related-data.md index 84243df5ab..846044abc1 100644 --- a/aspnetcore/data/ef-rp/read-related-data.md +++ b/aspnetcore/data/ef-rp/read-related-data.md @@ -46,7 +46,7 @@ There are several ways that EF Core can load related data into the navigation pr ![Explicit loading example](read-related-data/_static/explicit-loading.png) -* [Lazy loading](https://docs.microsoft.com/ef/core/querying/related-data#lazy-loading). [EF Core doesn't currently support lazy loading](https://github.com/aspnet/EntityFrameworkCore/issues/3797). When the entity is first read, related data isn't retrieved. The first time a navigation property is accessed, the data required for that navigation property is automatically retrieved. A query is sent to the DB each time a navigation property is accessed for the first time. +* [Lazy loading](https://docs.microsoft.com/ef/core/querying/related-data#lazy-loading). [Lazy loading was added to EF Core in version 2.1](/ef/core/querying/related-data#lazy-loading). When the entity is first read, related data isn't retrieved. The first time a navigation property is accessed, the data required for that navigation property is automatically retrieved. A query is sent to the DB each time a navigation property is accessed for the first time. * The `Select` operator loads only the related data needed.