Skip to content Skip to sidebar Skip to footer

Distributed Transactions: .net Framework Vs .net Core

I have the following code sample: static void Main(string[] args) { TransactionManager.DistributedTransactionStarted += (sender, eventArgs) => { Console.WriteLin

Solution 1:

NET Core doesn't support Distributed Transactions because it would require a different transaction manager on each platform. You can find more about this issue on https://github.com/dotnet/runtime/issues/715.

This feature seems to be added to Release 5.0 from .NET Due by November 30, 2020

There is another thread SA talking about this problem.

Post a Comment for "Distributed Transactions: .net Framework Vs .net Core"