Does SqlConnection processes queries in parallel?
问题 If I open a SqlConnection to a SQL Server, and then issue multiple queries from multiple background threads, all using that one connection - will those queries be executed sequentially (don't care about the order)? Specifically, if at the beginning of one query I change isolation level and then restore it at the end of that query - is there a chance that this isolation level may apply to other queries? I think not, but want to confirm. SQL Server 2008 R2 And I am talking about System.Data