Update src/roadmaps/aspnet-core/content/104-orm/100-entity-framework-core/102-change-tracker-api.md

pull/3294/head
Kamran Ahmed 2 years ago committed by GitHub
parent fa1ec112b1
commit 27810a2c39
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/roadmaps/aspnet-core/content/104-orm/100-entity-framework-core/102-change-tracker-api.md

@ -5,8 +5,6 @@ The Change Tracker API is a feature of ORM (Object-Relational Mapping) framework
The Change Tracker API is typically exposed through the context class, which is the main class that manages the connection to the database and provides access to the entities. The Change Tracker API is typically exposed through the context class, which is the main class that manages the connection to the database and provides access to the entities.
When an entity is retrieved from the database, the Change Tracker API marks it as "unchanged". When a property of the entity is modified, the Change Tracker API marks the entity as "modified". And when a new entity is added to the context, the Change Tracker API marks it as "added". When an entity is retrieved from the database, the Change Tracker API marks it as "unchanged". When a property of the entity is modified, the Change Tracker API marks the entity as "modified". And when a new entity is added to the context, the Change Tracker API marks it as "added".
For more resources, visit the following links: For more resources, visit the following links:
- [Change Tracking in EF Core](https://learn.microsoft.com/en-us/ef/core/change-tracking/) - [Change Tracking in EF Core](https://learn.microsoft.com/en-us/ef/core/change-tracking/)

Loading…
Cancel
Save