TransactionHandler.MatchesParentContext-Methode
[Diese Seite bezieht sich auf Entity Framework Version 6. Die neueste Version ist als 'Entity Framework' NuGet-Paket verfügbar. Weitere Informationen zu Entity Framework finden Sie unter msdn.com/data/ef.]
Prüft, ob der bereitgestellte Abfangkontext den Zielkontext enthält oder ob die bereitgestellte Verbindung dieselbe ist wie die vom Zielkontext verwendete Verbindung.
Namespace: System.Data.Entity.Infrastructure
Assembly: EntityFramework (in EntityFramework.dll)
Syntax
'Declaration
Protected Friend Overridable Function MatchesParentContext ( _
connection As DbConnection, _
interceptionContext As DbInterceptionContext _
) As Boolean
'Usage
Dim connection As DbConnection
Dim interceptionContext As DbInterceptionContext
Dim returnValue As Boolean
returnValue = Me.MatchesParentContext(connection, _
interceptionContext)
protected internal virtual bool MatchesParentContext(
DbConnection connection,
DbInterceptionContext interceptionContext
)
protected public:
virtual bool MatchesParentContext(
DbConnection^ connection,
DbInterceptionContext^ interceptionContext
)
abstract MatchesParentContext :
connection:DbConnection *
interceptionContext:DbInterceptionContext -> bool
override MatchesParentContext :
connection:DbConnection *
interceptionContext:DbInterceptionContext -> bool
function MatchesParentContext(
connection : DbConnection,
interceptionContext : DbInterceptionContext
) : boolean
Parameter
- connection
Typ: System.Data.Common.DbConnection
Eine Verbindung.
- interceptionContext
Typ: DbInterceptionContext
Ein Abfangkontext.
Rückgabewert
Typ: System.Boolean
true , wenn der bereitgestellte Abfangkontext den Zielkontext enthält oder die bereitgestellte Verbindung dieselbe ist wie die vom Zielkontext verwendete Verbindung, wenn der bereitgestellte Abfangkontext keine Kontexte enthält; andernfalls false.
Hinweise
Beachten Sie, dass durch das Aufrufen dieser Methode die Initialisierung von vom interceptionContext referenziertem DbContext ausgelöst wird.