Partager via


InterceptorAggregator<TInterceptor> Classe

Définition

Classe de base abstraite pour les implémentations du IInterceptorAggregator service.

public abstract class InterceptorAggregator<TInterceptor> : Microsoft.EntityFrameworkCore.Diagnostics.IInterceptorAggregator where TInterceptor : class, IInterceptor
type InterceptorAggregator<'Interceptor (requires 'Interceptor : null and 'Interceptor :> IInterceptor)> = class
    interface IInterceptorAggregator
Public MustInherit Class InterceptorAggregator(Of TInterceptor)
Implements IInterceptorAggregator

Paramètres de type

TInterceptor

Type d’intercepteur.

Héritage
InterceptorAggregator<TInterceptor>
Implémente

Remarques

La durée de vie du service est Scoped et plusieurs inscriptions sont autorisées. Cela signifie que chaque DbContext instance utilisera son propre ensemble d’instances de ce service. Les implémentations peuvent dépendre d’autres services inscrits avec n’importe quelle durée de vie. Les implémentations n’ont pas besoin d’être thread-safe.

Pour plus d’informations et d’exemples, consultez intercepteurs EF Core .

Constructeurs

InterceptorAggregator<TInterceptor>()

Classe de base abstraite pour les implémentations du IInterceptorAggregator service.

Propriétés

InterceptorType

Type d’intercepteur.

Méthodes

AggregateInterceptors(IReadOnlyList<IInterceptor>)

Résout un seul IInterceptor /> de tous ceux inscrits sur le DbContext ou dans le fournisseur de services interne.

CreateChain(IEnumerable<TInterceptor>)

Doit être implémenté par le type hérité pour créer un intercepteur unique à partir de la liste donnée.

S’applique à