Skip to main content
All docs
V25.1
  • .NET 8.0+
    • The page you are viewing does not exist in the .NET Framework 4.6.2+ platform documentation. This link will take you to the parent topic of the current section.

    StateMachineOptions.StateMachineStorageType Property

    Specifies a persistent type used to store state machines in the database.

    Namespace: DevExpress.ExpressApp.StateMachine

    Assembly: DevExpress.ExpressApp.StateMachine.v25.1.dll

    NuGet Package: DevExpress.ExpressApp.StateMachine

    Declaration

    public Type StateMachineStorageType { get; set; }

    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