Skip to main content
.NET 6.0+

Session.Connection Property

Gets or sets an IDbConnection object associated with the session.

Namespace: DevExpress.Xpo

Assembly: DevExpress.Xpo.v23.2.dll

NuGet Package: DevExpress.Xpo

Declaration

[DefaultValue(null)]
public IDbConnection Connection { get; set; }

Property Value

Type Default Description
IDbConnection null

An object which implements the IDbConnection interface.

Remarks

Use the OleDbConnection to access an Microsoft Access database and the SqlConnection to access an Microsoft SQL Server database.

Setting the Connection property throws the CannotChangePropertyWhenSessionIsConnectedException if the session is already connected to a database. Otherwise, it resets the Session.ConnectionString property’s value.

The Connection property returns null (Nothing in VB) if the pooled database connection with the Cached Data Store and Object Access Layer (SessionObjectLayer or SerializableObjectLayerClient) is used.

See Also