Session(IDataLayer, IDisposable[]) Constructor
In This Article
Initializes a new instance of the Session class and connects it to a data store.
Namespace: DevExpress.Xpo
Assembly: DevExpress.Xpo.v24.2.dll
NuGet Package: DevExpress.Xpo
#Declaration
public Session(
IDataLayer layer,
params IDisposable[] disposeOnDisconnect
)
#Parameters
Name | Type | Description |
---|---|---|
layer | IData |
An object which implements the IData |
dispose |
IDisposable[] | An array of objects that implement the System. |
#Remarks
This constructor automatically creates a SimpleObjectLayer instance for the specified layer and calls the overloaded constructor that accepts an object layer (IObjectLayer implementation) as the parameter.
See Also