Name | Description |
---|---|
DbContextSaveChangesTransactionExecutor | This implementation of ITransactionExecutor guarantees only that all changes will be saved in single transaction. All queries performed during the action won't be in the same transaction. |
DbContextTransactionExecutor | This implementation of ITransactionExecutor guarantees that all operations on DbContext will be done in the same transaction (including querying and saving data). In case of nesting there will be only one topmost transaction. |