Share via


ChangeTracker.DetectChanges Method

Definition

Scans the tracked entity instances to detect any changes made to the instance data. DetectChanges() is usually called automatically by the context when up-to-date information is required (before SaveChanges() and when returning change tracking information). You typically only need to call this method if you have disabled AutoDetectChangesEnabled.

public virtual void DetectChanges ();
abstract member DetectChanges : unit -> unit
override this.DetectChanges : unit -> unit
Public Overridable Sub DetectChanges ()

Remarks

See EF Core change tracking for more information and examples.

Applies to