DbContext.SavingChanges Event

Definition

An event fired at the beginning of a call to SaveChanges or SaveChangesAsync

public event EventHandler<Microsoft.EntityFrameworkCore.SavingChangesEventArgs> SavingChanges;
public event EventHandler<Microsoft.EntityFrameworkCore.SavingChangesEventArgs>? SavingChanges;
member this.SavingChanges : EventHandler<Microsoft.EntityFrameworkCore.SavingChangesEventArgs> 
Public Event SavingChanges As EventHandler(Of SavingChangesEventArgs) 

Event Type

Remarks

See Saving data in EF Core and EF Core events for more information and examples.

Applies to