diff --git a/entity-framework/core/change-tracking/explicit-tracking.md b/entity-framework/core/change-tracking/explicit-tracking.md index 223eaa3e7c..372b3be840 100644 --- a/entity-framework/core/change-tracking/explicit-tracking.md +++ b/entity-framework/core/change-tracking/explicit-tracking.md @@ -18,9 +18,6 @@ Entity Framework Core (EF Core) change tracking works best when the same [!TIP] > You can run and debug into all the code in this document by [downloading the sample code from GitHub](https://github.com/dotnet/EntityFramework.Docs/tree/live/samples/core/ChangeTracking/ChangeTrackingInEFCore). -> [!TIP] -> For simplicity, this document uses and references synchronous methods such as rather than their async equivalents such as . Calling and awaiting the async method can be substituted unless otherwise noted. - ## Introduction Entities can be explicitly "attached" to a such that the context then tracks those entities. This is primarily useful when: diff --git a/entity-framework/core/change-tracking/index.md b/entity-framework/core/change-tracking/index.md index d804cd3048..8393957ca8 100644 --- a/entity-framework/core/change-tracking/index.md +++ b/entity-framework/core/change-tracking/index.md @@ -15,9 +15,6 @@ This document presents an overview of Entity Framework Core (EF Core) change tra > [!TIP] > You can run and debug into all the code in this document by [downloading the sample code from GitHub](https://github.com/dotnet/EntityFramework.Docs/tree/live/samples/core/ChangeTracking/ChangeTrackingInEFCore). -> [!TIP] -> For simplicity, this document uses and references synchronous methods such as rather than their async equivalents such as . Calling and awaiting the async method can be substituted unless otherwise noted. - ## How to track entities Entity instances become tracked when they are: