Skip to main content
.NET 6.0+

XPObjectSpaceProvider.GetDataStoreProvider(String, IDbConnection) Method

Returns the data store provider.

Namespace: DevExpress.ExpressApp.Xpo

Assembly: DevExpress.ExpressApp.Xpo.v23.2.dll

NuGet Package: DevExpress.ExpressApp.Xpo

Declaration

public static IXpoDataStoreProvider GetDataStoreProvider(
    string connectionString,
    IDbConnection connection
)

Parameters

Name Type Description
connectionString String

A string containing the database connection settings.

connection IDbConnection

An IDbConnection object specifying the database connection.

Returns

Type Description
DevExpress.ExpressApp.Xpo.IXpoDataStoreProvider

An IXpoDataStoreProvider object.

Remarks

You can pass the object returned by the static GetDataStoreProvider method to the XPObjectSpaceProvider constructor when registering the Object Space Provider in the XafApplication.CreateCustomObjectSpaceProvider event handler.

If you need to enable connection pooling, use another overload of this method that takes the enablePooling parameter.

See Also