SaveChangesInterceptor.SavedChangesAsync Metodo

Definizione

Chiamata alla fine di DbContext.SaveChangesAsync.

Questo metodo viene ancora chiamato se un intercettatore ha eliminato la creazione di un comando in SavingChangesAsync(DbContextEventData, InterceptionResult<Int32>, CancellationToken). In questo caso, result è il risultato restituito da SavingChangesAsync(DbContextEventData, InterceptionResult<Int32>, CancellationToken).

public virtual System.Threading.Tasks.ValueTask<int> SavedChangesAsync (Microsoft.EntityFrameworkCore.Diagnostics.SaveChangesCompletedEventData eventData, int result, System.Threading.CancellationToken cancellationToken = default);
abstract member SavedChangesAsync : Microsoft.EntityFrameworkCore.Diagnostics.SaveChangesCompletedEventData * int * System.Threading.CancellationToken -> System.Threading.Tasks.ValueTask<int>
override this.SavedChangesAsync : Microsoft.EntityFrameworkCore.Diagnostics.SaveChangesCompletedEventData * int * System.Threading.CancellationToken -> System.Threading.Tasks.ValueTask<int>
Public Overridable Function SavedChangesAsync (eventData As SaveChangesCompletedEventData, result As Integer, Optional cancellationToken As CancellationToken = Nothing) As ValueTask(Of Integer)

Parametri

eventData
SaveChangesCompletedEventData

Informazioni contestuali sull'uso DbContext .

result
Int32

Risultato della chiamata a DbContext.SaveChangesAsync. Questo valore viene in genere usato come valore restituito per l'implementazione di questo metodo.

cancellationToken
CancellationToken

Oggetto CancellationToken da osservare durante l'attesa del completamento dell'attività.

Restituisce

Risultato che ef userà. Una normale implementazione di questo metodo per qualsiasi intercettatore che non tenta di modificare il risultato consiste nel restituire il result valore passato.

Implementazioni

Eccezioni

Si applica a