Skip to content

Commit c89b823

Browse files
Update read-related-data.md (#19919)
1 parent 59f3372 commit c89b823

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

aspnetcore/data/ef-rp/read-related-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ There are several ways that EF Core can load related data into the navigation pr
4848

4949
![Explicit loading example](read-related-data/_static/explicit-loading.png)
5050

51-
* [Lazy loading](/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 database each time a navigation property is accessed for the first time.
51+
* [Lazy loading](/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 database each time a navigation property is accessed for the first time. Lazy loading can hurt performance, for example when developers use N+1 patterns, loading a parent and enumerating through children.
5252

5353
## Create Course pages
5454

0 commit comments

Comments
 (0)