XpoDefault.DataLayer Property
Gets or sets the default data access layer which is used by Session objects by default, to access a data store.
Namespace: DevExpress.Xpo
Assembly: DevExpress.Xpo.v24.1.dll
NuGet Packages: DevExpress.Win.PivotGrid, DevExpress.Win.TreeMap, DevExpress.Xpo
NuGet Package: DevExpress.Xpo
Declaration
Property Value
Type | Description |
---|---|
IDataLayer | An object which implements the IDataLayer interface; null - in this case, every new session will create and use its own data layer. |
Example
This example demonstrates how to create a data layer that will be used by all Session objects.
The XpoDefault.DataLayer
property’s value is null by default. XPO creates a new data layer for each session when the session is connected to a data store.
In this example, a data layer (represented by the SimpleDataLayer class object) is created and assigned to the XpoDefault.DataLayer
property using the XpoDefault.GetDataLayer method.
In this case, newly created sessions will use this data layer. The sessions’ Session.Connection and Session.ConnectionString properties are not initialized.
using DevExpress.Data.DB;
using DevExpress.Xpo;
string forcedConnectionString = ...;
XpoDefault.DataLayer = XpoDefault.GetDataLayer(forcedConnectionString,
AutoCreateOption.DatabaseAndSchema);
Related GitHub Examples
The following code snippets (auto-collected from DevExpress Examples) contain references to the DataLayer property.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.