ARTICLE

Compiled Queries in LINQ

Posted by Dhananjay Kumar Articles | LINQ January 07, 2011
There might be a scenario where we need to execute a particular query many times and repeatedly. LINQ allows us to make this task very easy by enabling us to create a query and make it compiled always. We call this type of query a compiled query.
Reader Level:
Download Files:
 


There may be scenario where we need to execute a particular query many times and repeatedly. LINQ allows us to make this task very easy by enabling us to create a query and make it compiled always. We call this type of query a compiled query.

Benefits of Compiled Queries

  1. Query does need to compiled each time so execution of the query is fast.
  2. Query is compiled once and can be used any number of times.
  3. Query does need to be recompiled even if the parameter of the query is being changed.

Steps to create a Compiled Query
  1. Create a static class
  2. Add namespace System.Data.Linq.
  3. Use CompiledQuery class to create complied LINQ query.

Let us say we want to create a compiled query to retrieve the entire Person from School database.
  1. Create Static class

    1.gif
     
  2. Define static query in the class

    2.gif

We can pass as many parameters in Func
  1. First parameter is always the name of the DataContext class created by LINQ to SQL. In our example the name of the DataContext class is DataClass1DataContext.
     
  2. Last parameter is the result parameter. This says the return type of the result of the query. This is always a generic IQueryable. In our example it is IQueryable<Person>
     
  3. In between first and last parameter we can have parameters to apply against the query.

    3.gif
     
  4. Keyword to create complied query is

    4.gif

Let us write a complied query to fetch all the Persons from DataContext

5.gif

And we will call this compiled query as below; MyCompliedQueries is name of the static class.

6.gif

Program.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data.Linq ; 
 
namespace ConsoleApplication5
  {
    class Program
        {
            static void Main(string[] args)
                {
                    DataClasses1DataContext context = new DataClasses1DataContext();
                    var result = MyCompliedQueries.CompliedQueryForPesron(context);
                    foreach (var r in result)
                    {
                        Console.WriteLine(r.FirstName + r.LastName);
                    }
 
                    Console.ReadKey(true);
                    
                }
        }
 
    static class MyCompliedQueries
        {
               public static Func<DataClasses1DataContext ,IQueryable<Person>>
               CompliedQueryForPesron = CompiledQuery.Compile(
                                          (DataClasses1DataContext context)=>
                                              from c in context.Persons select c );
 
         
        }
}


Output

7.gif

Now if we want to pass some parameter in compiled query

8.gif

And we will call this query as below,

9.gif

Program.cs

using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data.Linq ; 
 
namespace ConsoleApplication5
  {
    class Program
        {
            static void Main(string[] args)
                {
                    DataClasses1DataContext context = new DataClasses1DataContext();
                    var result = MyCompliedQueries.CompliedQueryForPesron(context);
                    foreach (var r in result)
                    {
                        Console.WriteLine(r.FirstName + r.LastName);
                    }
 
                    Console.ReadKey(true);
                    
                }
        }
 
    static class MyCompliedQueries
        {
               public static Func<DataClasses1DataContext ,IQueryable<Person>>
               CompliedQueryForPesron = CompiledQuery.Compile(
                                          (DataClasses1DataContext context)=>
                                              from c in context.Persons select c );
 
         
        }
}


Output

10.gif

  

Login to add your contents and source code to this article
post comment
     

Please note that you can only pass a max of three input parameter , in the above method. you need to pass a struct in order to pass more parameters.

Posted by Hassan Humayun Mar 30, 2012

You can always edit your article to fix any corrections.

Posted by Mahesh Chand Jan 07, 2011

"Query does need to be recompiled even if the parameter of query is being changed. " 3rd point about complied query is just misprinted it should be actually "Query does not need to be recompiled even if the parameter of query is being changed. "

Posted by Dhananjay Kumar Jan 07, 2011
COMMENT USING
PREMIUM SPONSORS
DynamicPDF™ product line allows you to dynamically generate PDF documents, merge PDF documents and add new content to existing PDF documents from within your applications.
Join a Chapter
SPONSORED BY
  • PDF reports have never been easier to create. With our included WYSIWYG Designer, you can layout your reports, set up your data source and let DynamicPDF ReportWriter do the rest.
Join a Chapter