StateMachineOptions.StateMachineStorageType Property
Specifies a persistent type used to store state machines in the database.
Namespace: DevExpress.ExpressApp.StateMachine
Assembly: DevExpress.ExpressApp.StateMachine.v24.1.dll
NuGet Package: DevExpress.ExpressApp.StateMachine
Declaration
Property Value
Type | Description |
---|---|
Type | A persistent type used to store state machines in the database. |
Remarks
For more information refer to the following Module property description: StateMachineStorageType.
The following example demonstrates how to specify this property:
WinForms
File: MySolution.Win\Startup.cs.
using DevExpress.ExpressApp.ApplicationBuilder;
using DevExpress.ExpressApp.StateMachine.Xpo;
using DevExpress.ExpressApp.Win.ApplicationBuilder;
// ...
public class ApplicationBuilder : IDesignTimeApplicationFactory {
public static WinApplication BuildApplication(string connectionString) {
var builder = WinApplication.CreateBuilder();
builder.UseApplication<MySolutionWindowsFormsApplication>();
builder.Modules
// ...
.AddStateMachine(options => {
options.StateMachineStorageType = typeof(XpoStateMachine);
})
// ...
}
// ...
}
ASP.NET Core Blazor
File: MySolution.Blazor.Server\Startup.cs.
using DevExpress.ExpressApp.ApplicationBuilder;
using DevExpress.ExpressApp.StateMachine.Xpo;
using DevExpress.ExpressApp.Blazor.ApplicationBuilder;
// ...
public class Startup {
// ...
public void ConfigureServices(IServiceCollection services) {
// ...
services.AddXaf(Configuration, builder => {
builder.UseApplication<MySolutionBlazorApplication>();
builder.Modules
// ...
.AddStateMachine(options => {
options.StateMachineStorageType = typeof(XpoStateMachine);
})
// ...
});
// ...
}
}
See Also