DbConnectionDispatcher.BeginTransaction Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Sends BeginningTransaction(DbConnection, BeginTransactionInterceptionContext) and BeganTransaction(DbConnection, BeginTransactionInterceptionContext) to any IDbConnectionInterceptor registered on DbInterception before/after making a call to BeginTransaction(IsolationLevel).
public virtual System.Data.Common.DbTransaction BeginTransaction (System.Data.Common.DbConnection connection, System.Data.Entity.Infrastructure.Interception.BeginTransactionInterceptionContext interceptionContext);
abstract member BeginTransaction : System.Data.Common.DbConnection * System.Data.Entity.Infrastructure.Interception.BeginTransactionInterceptionContext -> System.Data.Common.DbTransaction
override this.BeginTransaction : System.Data.Common.DbConnection * System.Data.Entity.Infrastructure.Interception.BeginTransactionInterceptionContext -> System.Data.Common.DbTransaction
Public Overridable Function BeginTransaction (connection As DbConnection, interceptionContext As BeginTransactionInterceptionContext) As DbTransaction
Parameters
- connection
- DbConnection
The connection on which the operation will be executed.
- interceptionContext
- BeginTransactionInterceptionContext
Optional information about the context of the call being made.
Returns
The result of the operation, which may have been modified by interceptors.
Remarks
Note that the result of executing the command is returned by this method. The result is not available in the interception context passed into this method since the interception context is cloned before being passed to interceptors.
Applies to
Entity Framework