Tagged Questions
3
votes
4answers
2k views
High volume site using ADO.NET TransactionScope vs ExecuteCommand on NOLOCK, READ UNCOMMITTED directly?
Just read this interesting article by Omar on his blog Linq to SQL solve Transaction deadlock and Query timeout problem using uncommitted reads and at the end
Javed Hasan started arguing with him ...
2
votes
1answer
86 views
LINQ-To-SQL NOLOCK (NOT ReadUncommitted)
I've been searching for some time now in here and other places and can't find a good answer to why Linq-TO-SQL with NOLOCK is not possible..
Every time I search for how to apply the with(NOLOCK) hint ...
2
votes
1answer
284 views
In LINQ-To-SQL, should I use NOLOCK to improve performance?
Our DBA came to us with information that our LINQ queries are creating many thousands of locks on the database. A developer on our team dug up this Hanselman post as a possible solution to our ...
1
vote
1answer
211 views
When modifying linq-to-sql commandtext, should the connection be closed?
I'm modifying the commandtext of linq-to-sql to force it to use nolock, like this...
if (db.Connection.State == System.Data.ConnectionState.Closed)
db.Connection.Open();
var cmd = ...