I use TransactionScopehigh level to wrap some high level code that makes several database connections.
One of the functions I call is a general read, which is used for read-only functions where an isolation level is required read uncommitted. But in some cases, it is used as part of a large update operation, but read committedwill be more appropriate.
At the highest level, where I call my functions inside the transaction scope, should I set the isolation level for the transaction?
source
share