Transactions

Are you using the transactions support? It is currently looking at the
chopping block as we do not see a lot of usage of it and it is
actually quite complex internally.

If you are using it, could you let me know what your use case is?

Hello,

i’m using them in the same way as they are used in your examples:

https://github.com/EventStore/getting-started-with-event-store/blob/master/src/GetEventStoreRepository/GetEventStoreRepository.cs#L115

If this is not needed at all, i don’t need them.

Best regards,

Daniel

We have pretty much the same repository implementation…

If you remove transaction support are you also removing the ability to write to more than one stream atomically?

Eventstore transactions do not support more than one stream. Although you might be able to hack that together with DTC.

Thank you. I misread the docs…

Oh, so transactions allow you to write multiple events to a single stream, but not across multiple streams?

I didn’t think multiple stream transactions made much sense.

Its mostly that you can do N writes and then commit them together
(including multiple distinct operations).

eg
start transaction
write
wait one minute
write
commit