LINQ to SQL and NOLOCK Hints
In our SQL queries here at work, we use the NOLOCK hint a lot. Not locking rows during reads is very important to us, and our transactions are seldom rolled back so the queries generally return data that's accurate enough for the tasks at hand. Now that we're starting to investigate LINQ to SQL , then...