Deadlocks…Avoid them by only having one save method in your repository.

I’ve been trying to figure out the cause of a SQL deadlock problem, and it dawned on me that preventing deadlocks shouldn’t be that hard. You just have to save data in the same order every time, and the easiest way to do that is to have a repository with one save method. I’ll show you what a deadlock is, and how to prevent them.

Leave a Reply

Your email address will not be published. Required fields are marked *