SQLID SPID and Transaction Scope
2 answers
We found out that the SPID is connected to a connection, not a transaction.
But EF will close and open the connection to enlist it in the transaction.
The connection is not actually closed, released to the connection pool and then loaded again.
The problem is that you cannot get the same connection from the connection pool, in which case you will not have the same SPID.
0
a source to share