Skip to content

Commit 44f5862

Browse files
authored
Typo (#5018)
Fixes #5017
1 parent cf99971 commit 44f5862

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

entity-framework/core/change-tracking/entity-entries.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -481,7 +481,7 @@ Notice that, unlike <xref:Microsoft.EntityFrameworkCore.ChangeTracking.ChangeTra
481481
- `Added` entities are included. Note that this is not the case for normal EF Core queries, since `Added` entities do not yet exist in the database and so are therefore never returned by a database query.
482482
- `Deleted` entities are excluded. Note that this is again not the case for normal EF Core queries, since `Deleted` entities still exist in the database and so _are_ returned by database queries.
483483

484-
All of this means that `DbSet.Local` is view over the data that reflects the current conceptual state of the entity graph, with `Added` entities included and `Deleted` entities excluded. This matches what database state is expected to be after SaveChanges is called.
484+
All of this means that `DbSet.Local` is a view over the data that reflects the current conceptual state of the entity graph, with `Added` entities included and `Deleted` entities excluded. This matches what database state is expected to be after SaveChanges is called.
485485

486486
This is typically the ideal view for data binding, since it presents to the user the data as they understand it based on the changes made by the application.
487487

0 commit comments

Comments
 (0)