Skip to main content
.NET 8.0+

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

IObjectSpaceProvider.CheckCompatibilityType Property

Specifies how the database and application compatibility is checked.

Namespace: DevExpress.ExpressApp

Assembly: DevExpress.ExpressApp.v24.2.dll

NuGet Package: DevExpress.ExpressApp

#Declaration

#Property Value

Type Description
Nullable<CheckCompatibilityType>

A Nullable<CheckCompatibilityType> enumeration value specifying how the database and application compatibility is checked.

Available values:

Name Description
DatabaseSchema

The database schema compatibility is checked: all required tables, columns and the database itself should exist.

ModuleInfo

The module versions stored in the ModuleInfo table are compared with their actual assembly versions.

#Remarks

This property allows you to specify the mode individually for each Object Space Provider (in case you use multiple databases)

By default, CheckCompatibilityType is set to null (Nothing in VB) and the XafApplication.CheckCompatibilityType property value is actually used. Refer to this property description to learn more on available values.

See Also