ISaveChangesInterceptor.SavedChanges Method

Definition

Called at the end of DbContext.SaveChanges.

C#
public int SavedChanges (Microsoft.EntityFrameworkCore.Diagnostics.SaveChangesCompletedEventData eventData, int result);
C#
public virtual int SavedChanges (Microsoft.EntityFrameworkCore.Diagnostics.SaveChangesCompletedEventData eventData, int result);

Parameters

eventData
SaveChangesCompletedEventData

Contextual information about the DbContext being used.

result
Int32

The result of the call to DbContext.SaveChanges. This value is typically used as the return value for the implementation of this method.

Returns

The result that EF will use. An implementation of this method for any interceptor that is not attempting to change the result is to return the result value passed in.

Remarks

This method is still called if an interceptor suppressed creation of a command in SavingChanges(DbContextEventData, InterceptionResult<Int32>). In this case, result is the result returned by SavingChanges(DbContextEventData, InterceptionResult<Int32>).

Applies to

Product Versions
Entity Framework Core 5.0, 6.0, 7.0, 8.0, 9.0