EntityConnection Class
Contains a reference to a conceptual model and a data source connection. This class cannot be inherited.
System::MarshalByRefObject
System.ComponentModel::Component
System.Data.Common::DbConnection
System.Data.EntityClient::EntityConnection
Assembly: System.Data.Entity (in System.Data.Entity.dll)
The EntityConnection type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | EntityConnection() | Initializes a new instance of the EntityConnection class. |
![]() | EntityConnection(String) | Initializes a new instance of the EntityConnection class, based on the connection string. |
![]() | EntityConnection(MetadataWorkspace, DbConnection) | Initializes a new instance of the EntityConnection class with a specified MetadataWorkspace and DbConnection. |
| Name | Description | |
|---|---|---|
![]() | CanRaiseEvents | Gets a value indicating whether the component can raise an event. (Inherited from Component.) |
![]() | ConnectionString | Gets or sets the EntityConnection connection string. (Overrides DbConnection::ConnectionString.) |
![]() | ConnectionTimeout | Gets the number of seconds to wait when attempting to establish a connection before ending the attempt and generating an error. (Overrides DbConnection::ConnectionTimeout.) |
![]() | Container | Gets the IContainer that contains the Component. (Inherited from Component.) |
![]() | Database | Gets the name of the current database, or the database that will be used after a connection is opened. (Overrides DbConnection::Database.) |
![]() | DataSource | Gets the name or network address of the data source to connect to. (Overrides DbConnection::DataSource.) |
![]() | DbProviderFactory | Gets the DbProviderFactory for this DbConnection. (Inherited from DbConnection.) |
![]() | DesignMode | Gets a value that indicates whether the Component is currently in design mode. (Inherited from Component.) |
![]() | Events | Gets the list of event handlers that are attached to this Component. (Inherited from Component.) |
![]() | ServerVersion | Gets a string that contains the version of the data source to which the client is connected. (Overrides DbConnection::ServerVersion.) |
![]() | Site | Gets or sets the ISite of the Component. (Inherited from Component.) |
![]() | State | Gets the ConnectionState property of the underlying provider if the EntityConnection is open. Otherwise, returns Closed. (Overrides DbConnection::State.) |
![]() | StoreConnection | Provides access to the underlying data source connection that is used by the EntityConnection object. |
| Name | Description | |
|---|---|---|
![]() | BeginDbTransaction | Starts a database transaction. (Inherited from DbConnection.) |
![]() | BeginTransaction() | Begins a transaction by using the underlying provider. |
![]() | BeginTransaction(IsolationLevel) | Begins a transaction with the specified isolation level by using the underlying provider. |
![]() | ChangeDatabase | Not supported. (Overrides DbConnection::ChangeDatabase(String).) |
![]() | Close | Closes the connection to the database. (Overrides DbConnection::Close().) |
![]() | CreateCommand | Creates a new instance of an EntityCommand, with the Connection set to this EntityConnection. |
![]() | CreateDbCommand | Creates and returns a DbCommand object associated with the current connection. (Inherited from DbConnection.) |
![]() | CreateObjRef | 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 all resources used by the Component. (Inherited from Component.) |
![]() | Dispose(Boolean) | Releases the unmanaged resources used by the Component and optionally releases the managed resources. (Inherited from Component.) |
![]() | EnlistTransaction | Enlists this EntityConnection in the specified transaction. (Overrides DbConnection::EnlistTransaction(Transaction).) |
![]() | Equals(Object) | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) |
![]() | Finalize | Releases unmanaged resources and performs other cleanup operations before the Component is reclaimed by garbage collection. (Inherited from Component.) |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetLifetimeService | Retrieves the current lifetime service object that controls the lifetime policy for this instance. (Inherited from MarshalByRefObject.) |
![]() | GetMetadataWorkspace | Returns the MetadataWorkspace associated with this EntityConnection. |
![]() | GetSchema() | Returns schema information for the data source of this DbConnection. (Inherited from DbConnection.) |
![]() | GetSchema(String) | Returns schema information for the data source of this DbConnection using the specified string for the schema name. (Inherited from DbConnection.) |
![]() | GetSchema(String, array<String>) | Returns schema information for the data source of this DbConnection using the specified string for the schema name and the specified string array for the restriction values. (Inherited from DbConnection.) |
![]() | GetService | Returns an object that represents a service provided by the Component or by its Container. (Inherited from Component.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | InitializeLifetimeService | 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.) |
![]() | OnStateChange | Raises the StateChange event. (Inherited from DbConnection.) |
![]() | Open | Establishes a connection to the data source by calling the underlying data provider's Open method. (Overrides DbConnection::Open().) |
![]() | ToString | Returns a String containing the name of the Component, if any. This method should not be overridden. (Inherited from Component.) |
| Name | Description | |
|---|---|---|
![]() | Disposed | Occurs when the component is disposed by a call to the Dispose method. (Inherited from Component.) |
![]() | StateChange | Occurs when the state of the event changes. (Inherited from DbConnection.) |
| Name | Description | |
|---|---|---|
![]() ![]() | IDbConnection::BeginTransaction() | Begins a database transaction. (Inherited from DbConnection.) |
![]() ![]() | IDbConnection::BeginTransaction(IsolationLevel) | Begins a database transaction with the specified IsolationLevel value. (Inherited from DbConnection.) |
![]() ![]() | IDbConnection::CreateCommand | Creates and returns a DbCommand object that is associated with the current connection. (Inherited from DbConnection.) |
To avoid inadvertently putting objects such as System.Data.Common.CommandTrees and ObjectContext out of sync with their metadata, EntityConnection must lock its metadata. No changes to the connection string are allowed after the metadata is locked. The following are two scenarios in which metadata is locked:
The EntityConnection instance is constructed through the default constructor, or through the EntityConnection(String) constructor, which accepts a connection string. In either case the connection string might be changed multiple times before the connection is opened. Calling [M:System.Data.EntityClient.EntityConnection.Open()] or [M:System.Data.EntityClient.EntityConnection.GetMetadataWorkspace()] locks the metadata.
The EntityConnection instance is constructed through the EntityConnection(MetadataWorkspace, DbConnection) constructor, which accepts a MetadataWorkspace and a DbConnection. In this case, the metadata is locked at construction time. No changes to the connection string are ever allowed.
When metadata is loaded, the EntityConnection verifies that the conceptual model, the storage model, and the mapping file are all present.
For code examples, see Working with EntityClient.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
