I am developing a set of applications that all hit the same database, and concurrency has been one of the biggest issues I've had to deal with.
I'm developing solutions to work around these issues, and I recently thought of using SQL queries instead of LINQ queries to update databases. Because SQL has pessimistic concurrency control, in terms of preventing concurrency issues, is this a good and simple solution to my LINQ concurrency woes?