CoreLoggerExtensions.SaveChangesCompletedAsync 方法

定义

SaveChangesCompleted事件的日志。

public static System.Threading.Tasks.ValueTask<int> SaveChangesCompletedAsync (this Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger<Microsoft.EntityFrameworkCore.DbLoggerCategory.Update> diagnostics, Microsoft.EntityFrameworkCore.DbContext context, int entitiesSavedCount, System.Threading.CancellationToken cancellationToken = default);
static member SaveChangesCompletedAsync : Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger<Microsoft.EntityFrameworkCore.DbLoggerCategory.Update> * Microsoft.EntityFrameworkCore.DbContext * int * System.Threading.CancellationToken -> System.Threading.Tasks.ValueTask<int>
<Extension()>
Public Function SaveChangesCompletedAsync (diagnostics As IDiagnosticsLogger(Of DbLoggerCategory.Update), context As DbContext, entitiesSavedCount As Integer, Optional cancellationToken As CancellationToken = Nothing) As ValueTask(Of Integer)

参数

diagnostics
IDiagnosticsLogger<DbLoggerCategory.Update>

要使用的诊断记录器。

context
DbContext

正在使用的上下文。

entitiesSavedCount
Int32

保存的实体数。

cancellationToken
CancellationToken

等待 CancellationToken 任务完成时要观察的 。

返回

结果(可能已截获)。

例外

适用于