XpoDefault.GetDataLayer(AutoCreateOption) Method
Creates a data layer for the default connection string and default metadata information.
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 |
---|---|---|
defaultAutoCreateOption | AutoCreateOption | An AutoCreateOption value that specifies which operations should be performed when a data store is accessed for the first time. |
Returns
Type | Description |
---|---|
IDataLayer | The created SimpleDataLayer object. |
Remarks
This method creates a corresponding IDataStore object based on the default connection string (returned by the XpoDefault.ActiveConnectionString property) and defaultAutoCreateOption parameter and then creates a SimpleDataLayer object that wraps the created IDataStore object. The metadata information used to create the data layer is obtained via the XpoDefault.GetDictionary method.
The value returned by this method can be used to initialize the XpoDefault.DataLayer property or passed to a Session object’s constructor.
When you have finished working with a data layer you need to dispose of it to release the resources allocated by the data layer.
Related GitHub Examples
The following code snippets (auto-collected from DevExpress Examples) contain references to the GetDataLayer(AutoCreateOption) method.
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.