Skip to main content
.NET 6.0+

StateMachineModule.StateMachineStorageType Property

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

Namespace: DevExpress.ExpressApp.StateMachine

Assembly: DevExpress.ExpressApp.StateMachine.v23.2.dll

Declaration

[TypeConverter(typeof(BusinessClassTypeConverter<IStateMachine>))]
public Type StateMachineStorageType { get; set; }

Property Value

Type Description
Type

A persistent type used to store state machines in the database.

Remarks

You can change this property value in the Application Designer.

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