EntityFrameworkEventSource 类

定义

EventSource发出实体框架性能计数器数据。

public sealed class EntityFrameworkEventSource : System.Diagnostics.Tracing.EventSource
type EntityFrameworkEventSource = class
    inherit EventSource
Public NotInheritable Class EntityFrameworkEventSource
Inherits EventSource
继承
EntityFrameworkEventSource

注解

有关详细信息和示例 ,请参阅 EF Core 事件计数器

字段

Log

的单一 EntityFrameworkEventSource实例。

方法

CompiledQueryCacheHit()

指示已编译查询缓存中的命中,表示不需要进行查询编译。

CompiledQueryCacheMiss()

指示编译的查询缓存中未命中,表示需要进行查询编译。

DbContextDisposing()

指示 DbContext 正在释放实例。

DbContextInitializing()

指示正在初始化新 DbContext 实例。

ExecutionStrategyOperationFailure()

指示由 IExecutionStrategy 失败 (执行的操作,并可能重试) 。

OptimisticConcurrencyFailure()

指示发生了乐观并发失败。

QueryExecuting()

指示查询即将开始执行。

SavingChanges()

指示即将保存更改。

适用于