I am getting this error:
Network access for Distributed Transaction Manager (MSDTC) has been disabled. Please enable DTC for network access in the security configuration for MSDTC using the Component Services Administrative tool.
Is there a way to run TransactionScope
on localhost? I can run the thing on a server but in my local environment I get this error. Is there some settings we need to make so that we can use a TransactionScope
?
TransactionScope
does not require DTC as such - it is only escalated if needed across multiple DB connections. – BrokenGlass