Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / Languages / C#

Increase LINQ query perfromance by compiling it

3.00/5 (2 votes)
20 Oct 2011CPOL2 min read 23.1K  
Increase LINQ query perfromance by compiling it
Each time when we fire any Linq to SQL or to any other data-source using Entity Framework query run-time convert query to expression tree and then into t-SQL statement. So if the query gets fired a number of times in the application, it gets converted in the expression tree to t-SQL statement by run-time this conversion increases execution time which in turn affects performance of the application. To avoid this cost, Microsoft .NET framework introduces the concept of the compiled queries which allows compilation and caching of queries for reuse.

Now, there is a shopping website which list of the product by the category basically it allows filtering of product by the category. So if I have 100 number of users who logged in to system and do the filter the product by category they basically firequery to get the result they want. So this will increase the execution cost as this query gets fired a number of times and gets converted in the expression tree and in turn gets the result.

C#
from p in db.Products where p.Category == category select p


With the help of CompiledQuery class of .NET framework, I can rewrite my code and it's like below:

C#
public static Func<dataloadtestdatacontext,>>
 ProductByCategory =
    CompiledQuery.Compile((DataLoadTestDataContext db, string category) =>
     from p in db.Products where p.Category == category select p);


Static Variable
Static variable is used to store, so it's not thread safe and global to all. Because of static variable, compilation will only occur once per AppDomain and will remain cached through the rest of the application's lifetime. If you don't use the static variable, the query gets complied each time which increases the cost and decreases the performance of the application.

Constrain and Use
Cannot use to store the queries which returns Anonymous type, because the anonymous type doesn't have any type to assign generic argument of function.

Useful when query is used heavily and you want to reuse the query, by using this way increase the performance of the application.

Where to include the code ?
Better place to include the above code is partial class, its extended partial class to the partial class generated by ORM tool.
More: Extended ORM generated class[^]

Reference from Linq and C#.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)