Governs the TransactionScope behavior on dispose if neither VoteCommit()() nor VoteRollBack()() was called

Namespace: Castle.ActiveRecord
Assembly:  Castle.ActiveRecord (in Castle.ActiveRecord.dll)
Version: 1.0.3.0

Syntax

C#
public enum OnDispose

Members

Member nameDescription
Commit
Should commit the transaction, unless VoteRollBack()() was called before the disposing the scope (this is the default behavior)
Rollback
Should rollback the transaction, unless VoteCommit()() was called before the disposing the scope

See Also