EntityTransaction Class
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.
Specifies the transaction for an EntityCommand.
public ref class EntityTransaction sealed : System::Data::Common::DbTransaction
public sealed class EntityTransaction : System.Data.Common.DbTransaction
type EntityTransaction = class
inherit DbTransaction
Public NotInheritable Class EntityTransaction
Inherits DbTransaction
- Inheritance
Remarks
The EntityTransaction is obtained from the EntityConnection and specifies one or more EntityCommand objects. The EntityTransaction wraps the transaction of the underlying data provider's transaction object.
For code examples, see Managing Connections and Transactions.
Properties
Connection |
Gets EntityConnection for this EntityTransaction. |
DbConnection |
When overridden in a derived class, gets the DbConnection object associated with the transaction. (Inherited from DbTransaction) |
IsolationLevel |
Gets the isolation level of this EntityTransaction. |
Methods
Commit() |
Commits the underlying transaction. |
CreateObjRef(Type) |
Creates an object that contains all the relevant information required to generate a proxy used to communicate with a remote object. (Inherited from MarshalByRefObject) |
Dispose() |
Releases the unmanaged resources used by the DbTransaction. (Inherited from DbTransaction) |
Dispose(Boolean) |
Releases the unmanaged resources used by the DbTransaction and optionally releases the managed resources. (Inherited from DbTransaction) |
Equals(Object) |
Determines whether the specified object is equal to the current object. (Inherited from Object) |
GetHashCode() |
Serves as the default hash function. (Inherited from Object) |
GetLifetimeService() |
Obsolete.
Retrieves the current lifetime service object that controls the lifetime policy for this instance. (Inherited from MarshalByRefObject) |
GetType() |
Gets the Type of the current instance. (Inherited from Object) |
InitializeLifetimeService() |
Obsolete.
Obtains a lifetime service object to control the lifetime policy for this instance. (Inherited from MarshalByRefObject) |
MemberwiseClone() |
Creates a shallow copy of the current Object. (Inherited from Object) |
MemberwiseClone(Boolean) |
Creates a shallow copy of the current MarshalByRefObject object. (Inherited from MarshalByRefObject) |
Rollback() |
Rolls back the underlying transaction. |
ToString() |
Returns a string that represents the current object. (Inherited from Object) |
Explicit Interface Implementations
IDbTransaction.Connection |
Gets the DbConnection object associated with the transaction, or a null reference if the transaction is no longer valid. (Inherited from DbTransaction) |