C# – Linq To Sql – Handle a Transaction Deadlock
When using Linq To SQL, here’s the pattern I use to retry an operation after it failed because a deadlock occurred in a SQL Database: while (true) { try { using (var scope = new TransactionScope()) { using (var db = new MyDataContext()) { // Do what you need to do on the DB… db.SubmitChanges(); …
C# – Linq To Sql – Handle a Transaction Deadlock Read More »