ChangeTracker.DetectedEntityChanges Event

Definition

An event fired when any changes have been detected to a single entity, either through an explicit call to DetectChanges() or DetectChanges(), or automatically, such as part of executing SaveChanges() or SaveChangesAsync(CancellationToken).

public event EventHandler<Microsoft.EntityFrameworkCore.ChangeTracking.DetectedEntityChangesEventArgs> DetectedEntityChanges;
member this.DetectedEntityChanges : EventHandler<Microsoft.EntityFrameworkCore.ChangeTracking.DetectedEntityChangesEventArgs> 
Public Custom Event DetectedEntityChanges As EventHandler(Of DetectedEntityChangesEventArgs) 

Event Type

Remarks

AutoDetectChangesEnabled is set to false for the duration of the event to prevent an infinite loop of recursive automatic calls.

See EF Core change tracking for more information and examples.

Applies to