DurableServiceAttribute.SaveStateInOperationTransaction Property

Definition

Gets or sets a value that indicates whether the service instance state is persisted to the PersistenceProvider using the same transaction under which the operation is run.

public:
 property bool SaveStateInOperationTransaction { bool get(); void set(bool value); };
public bool SaveStateInOperationTransaction { get; set; }
member this.SaveStateInOperationTransaction : bool with get, set
Public Property SaveStateInOperationTransaction As Boolean

Property Value

true if the service instance state is persisted using the same transaction; otherwise, false.

Remarks

If SaveStateInOperationTransaction is set to true, then all operations on the service must either be marked with OperationBehaviorAttribute.TransactionScopeRequired set to true or marked with TransactionFlowOption.Mandatory. Additionally, ConcurrencyMode must be set to Single.

Setting SaveStateInOperationTransaction to true makes the service state transactional with the operation transaction. This means that if the operation's transaction rolls back, the service state also rolls back.

Applies to