Skip to main content

StateMachineModule.StateMachineStorageType Property

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

Namespace: DevExpress.ExpressApp.StateMachine

Assembly: DevExpress.ExpressApp.StateMachine.v25.2.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

The specified type should implement the IStateMachine interface. XAF provides you with two predefined types:

  • DevExpress.ExpressApp.StateMachine.Xpo.XpoStateMachine (XPO)
  • DevExpress.Persistent.BaseImpl.EF.StateMachine.StateMachine (EF)

Set the StateMachineStorageType property to the corresponding type after you add the State Machine Module to your application.

See Also