Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

EntityConnection::StoreConnection Property

 

Provides access to the underlying data source connection that is used by the EntityConnection object.

Namespace:   System.Data.EntityClient
Assembly:  System.Data.Entity (in System.Data.Entity.dll)

public:
property DbConnection^ StoreConnection {
	DbConnection^ get();
}

Property Value

Type: System.Data.Common::DbConnection^

The DbConnection for the data source connection.

If the EntityConnection object is closed, the returned data source connection will be closed. If it is open, an open data source connection will be returned. If the data source connection information was set, the returned value is always non-null. If there is no data source connection information (for example, if the default constructor was used and no connection string was set afterwards), then a null reference is returned.

The same data source connection used by the Entity Framework can be shared with other parts of an application. The data source connection is returned as a DbConnection object from the Connection property of ObjectContext, or from the StoreConnection property of EntityConnection.

.NET Framework
Available since 3.5
Return to top
Show:
© 2017 Microsoft