Reputation: 2862
My application does CRUD operations on SQL Server database using LINQ. For read operations, it is okay to do dirty reads. Instead of setting TransactionScope on each read method, is there a global way to set dirty reads for reads without messing up write operations? Note that there are hundreds of read methods doing join across multiple tables.
Upvotes: 0
Views: 331