Transactionscope throwing exception this platform does not support distributed transactions while opening connection object

.NET Core doesn’t support Distributed Transactions because it would require a different transaction manager on each platform. It may appear in the future (here‘s the issue in-progress), but for now any Transaction that would require two different resource managers will throw this exception. Instead you can coordinate separate transactions. Have two separate transactions complete their … Read more