From e086ad12d2777352040278d7e69bdf19040740d8 Mon Sep 17 00:00:00 2001 From: Erik McKelvey Date: Tue, 26 Sep 2023 13:37:04 -0700 Subject: [PATCH] Fixed typo in change-detection.md (#4498) --- entity-framework/core/change-tracking/change-detection.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entity-framework/core/change-tracking/change-detection.md b/entity-framework/core/change-tracking/change-detection.md index 6ff4380fa4..6f9e64f679 100644 --- a/entity-framework/core/change-tracking/change-detection.md +++ b/entity-framework/core/change-tracking/change-detection.md @@ -97,7 +97,7 @@ Post {Id: 2} Unchanged Now the blog is correctly marked as `Modified` and the new post has been detected and is tracked as `Added`. -At the start of this section we stated that detecting changes is needed when not using _using EF Core to make the change_. This is what is happening in the code above. That is, the changes to the property and navigation are made _directly on the entity instances_, and not by using any EF Core methods. +At the start of this section we stated that detecting changes is needed when not _using EF Core to make the change_. This is what is happening in the code above. That is, the changes to the property and navigation are made _directly on the entity instances_, and not by using any EF Core methods. Contrast this to the following code which modifies the entities in the same way, but this time using EF Core methods: