Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(data): change 'enableChangeTracking' reference to `noChangeTrack… #2463

Merged
merged 1 commit into from
Apr 3, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions projects/ngrx.io/content/guide/data/entity-change-tracker.md
Original file line number Diff line number Diff line change
Expand Up @@ -301,8 +301,8 @@ Disabling change tracking with `IgnoreChanges` is the most frequent choice.

### Disable change tracking

You can opt-out of change tracking for the entire collection by setting the collection's `enableChangeTracking` flag to `false` in its `entityMetadata`.
When `false`, NgRx Data does not track any changes for this collection
You can opt-out of change tracking for the entire collection by setting the collection's `noChangeTracking` flag to `true` in its `entityMetadata`.
When `true`, NgRx Data does not track any changes for this collection
and the `EntityCollection.changeState` property remains an empty object.

You can opt-out of change tracking for a _specific_ entity action by supplying the `mergeStrategy` in the optional `EntityActionOptions` that you can pass in the action payload.
Expand Down