This MSDN article states that:
An isolation level has connection-wide scope, and once set for a connection with the SET TRANSACTION ISOLATION LEVEL statement, it remains in effect until the connection is closed or another isolation level is set. When a connection is closed and returned to the pool, the isolation level from the last SET TRANSACTION ISOLATION LEVEL statement is retained. Subsequent connections reusing a pooled connection use the isolation level that was in effect at the time the connection is pooled.
The SqlConnection class has no member that may hold the isolation level. So how does a connection know what isolation level to run in???
The reason I'm asking this is because of the following scenario:
- I opened a transaction using TransactionScope in Serializable mode, say "T1".
- Opened a connection for T1.
- T1 is finished/disposed, connection goes back to connection pool.
- Called another query on same connection (after getting it from connection pool) and this query runs in serializable mode!!!
Problem:
- How does the pooled connection still know what isolation level was associated to it???
- How to revert it back to some other transaction level???