I know that if I use System.Transactions.TransactionScope
and don't specify an isolation level, it will default to Serializable
. However, what if I'm not using transaction scope, and am just using an old-fashioned table adapter? What is the default isolation level then?
Many thanks in advance.