How to Use Compiled Queries in Linq to Sql for High Demand ASP.NET Websites
If you are using Linq to SQL, instead of writing regular Linq Queries, you should be using Compiled Queries. if you are building an ASP.NET web application that’s going to get thousands of hits per hour, the execution overhead of Linq queries is going to consume too much CPU and make your site slow. There’s [...]

Read Users' Comments (0)