From 00df91f30dc09a3ff57465b2add5266bb92ea7f6 Mon Sep 17 00:00:00 2001 From: Abderrahmane Larchi <75677650+Abderrahmane07@users.noreply.github.com> Date: Fri, 15 Mar 2024 18:01:52 +0100 Subject: [PATCH] Typo - Update 103-lazy-eager-explicit-loading.md --- .../103-lazy-eager-explicit-loading.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/roadmaps/aspnet-core/content/104-orm/100-entity-framework-core/103-lazy-eager-explicit-loading.md b/src/data/roadmaps/aspnet-core/content/104-orm/100-entity-framework-core/103-lazy-eager-explicit-loading.md index 7b90ff860..667be18aa 100644 --- a/src/data/roadmaps/aspnet-core/content/104-orm/100-entity-framework-core/103-lazy-eager-explicit-loading.md +++ b/src/data/roadmaps/aspnet-core/content/104-orm/100-entity-framework-core/103-lazy-eager-explicit-loading.md @@ -2,7 +2,7 @@ ## Eager Loading -Eager Loading helps you to load all your needed entities at once; i.e., all your child entities will be loaded at single database call. This can be achieved, using the Include method, which returs the related entities as a part of the query and a large amount of data is loaded at once. +Eager Loading helps you to load all your needed entities at once; i.e., all your child entities will be loaded at single database call. This can be achieved, using the Include method, which returns the related entities as a part of the query and a large amount of data is loaded at once. ## Lazy Loading