This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace EventStoreDTCFirstTry | |
{ | |
public class EventStoreDistributedTransaction | |
{ | |
private static readonly Guid ResourceManagerId = new Guid("F6049197-5B56-4C90-ACA9-39A2516C547A"); | |
private readonly EventStoreConnection _connection; | |
private readonly EventStoreTransaction _esTransaction; | |
public EventStoreDistributedTransaction(EventStoreConnection connection, string stream, int expectedVersion) |