Session.Connect(IDataLayer, IDisposable[]) Method
Connects the session to a data store using a specified data access layer.
Namespace: DevExpress.Xpo
Assembly: DevExpress.Xpo.v24.1.dll
NuGet Packages: DevExpress.Win.PivotGrid, DevExpress.Win.TreeMap, DevExpress.Xpo
NuGet Package: DevExpress.Xpo
Declaration
Parameters
Name | Type | Description |
---|---|---|
layer | IDataLayer | An object implementing the IDataLayer interface. |
disposeOnDisconnect | IDisposable[] | An array of objects to be automatically disposed of when the session is disconnected from a data store. |
Remarks
This method does the following.
- Creates an object access layer (via the static SimpleObjectLayer.FromDataLayer method) based on the layer.
- Calls the other Connect overloaded method and passes the created object access layer as its parameter.
See Also