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

DatabaseUpdateMode Enum

Specifies the mode of updating the database.

Namespace: DevExpress.ExpressApp

Assembly: DevExpress.ExpressApp.v24.2.dll

NuGet Package: DevExpress.ExpressApp

#Declaration

public enum DatabaseUpdateMode

#Members

Name Description
Never

Specifies that the database is never updated. In this instance, update of the database should be performed manually on the database server.

UpdateDatabaseAlways

Specifies that the database is updated at every application run. Do not choose this mode when the Application Server is in use.

UpdateOldDatabase

Specifies that the database is updated when its version is older than the application version.

#Related API Members

The following properties accept/return DatabaseUpdateMode values:

#Remarks

These enumeration values are used to set the XafApplication.DatabaseUpdateMode property.

See Also