65.9K
CodeProject is changing. Read more.
Home

Dynamic Query with Linq

starIconstarIconstarIconemptyStarIconemptyStarIcon

3.00/5 (2 votes)

Jul 26, 2011

CPOL

2 min read

viewsIcon

79071

Building dynamic query with LINQ

In this post, I am going to discuss about building dynamic query with LINQ. LINQ to SQL allows a user to query data from the database without writing SQL queries by writing LINQ queries. LINQ represents each table as one entity and where LINQ queries allow to manipulate data in type safe.

But static LINQ queries are not able to meet all our programming needs. A dynamic LINQ query is needed when we need to retrieve a set of records based on different search parameters.

For example - An employee search screen or a general purpose report which needs to execute a different SELECT statement based on a different WHERE as well as Sorting column to sort data.

Dynamic Query in SQL Server

In SQL, there is concept of dynamic queries which allows to write and execute dynamic queries easily. In SQL Server, we use EXECUTE or sp_executesql to execute dynamic query.

For example:

DECLARE @SQLQuery AS NVARCHAR(500)
SET @SQLQuery = 'SELECT * FROM tblEmployees WHERE EmployeeID = + 
    convert(@EmpID as varchar(10))
EXECUTE(@SQLQuery)

or:

DECLARE @SQLQuery AS NVARCHAR(500)
DECLARE @ParameterDefinition AS NVARCHAR(100)
DECLARE @EmpID INT
SET @EmpID =100
SET @SQLQuery = 'SELECT * FROM tblEmployees WHERE EmployeeID = @EmpID'
SET @ParameterDefinition =  '@EmpID INT'
EXECUTE sp_executesql @SQLQuery, @ParameterDefinition, @EmpID

What to do when I am using LINQ? There are two ways to achieve this thing easily:

  1. Use Dynamic LINQ library
  2. Use PredicateBuilder

To understand both of the above libraries, consider the below screen shot:

I want to search data by entering in the above screen. Note here that I may have left some fields blank and some fields filled with value.

Use Dynamic LINQ library

Dynamic LINQ library allows build query which are having varying where clause or orderby. To work with the dynamic LINQ library, you need to download and install file in your project. You can get the file from this link: Basic Dynamic LINQ C# Sample

Once you install the file, you can build query as we can do in PL-SQL query.

The following code demonstrates how to build where dynamically.

string strWhere = string.Empty;
        string strOrderBy = string.Empty;

        if (!string.IsNullOrEmpty(txtAddress.Text))
            strWhere = "Address.StartsWith(\"" + txtAddress.Text + "\")";  
        if (!string.IsNullOrEmpty(txtEmpId.Text))
        {
            if(!string.IsNullOrEmpty(strWhere ))
                strWhere = " And ";
            strWhere = "Id = " + txtEmpId.Text;
        }
        if (!string.IsNullOrEmpty(txtDesc.Text))
        {
            if (!string.IsNullOrEmpty(strWhere))
                strWhere = " And ";
            strWhere = "Desc.StartsWith(\"" + txtDesc.Text + "\")";
        }
        if (!string.IsNullOrEmpty(txtName.Text))
        {
            if (!string.IsNullOrEmpty(strWhere))
                strWhere = " And ";
            strWhere = "Name.StartsWith(\"" + txtName.Text + "\")";
        }

        EmployeeDataContext edb = new EmployeeDataContext();
        var emp = edb.Employees.Where(strWhere);
        grdEmployee.DataSource = emp.ToList();
        grdEmployee.DataBind();

In the above code, I am building strWhere dynamically because there may be some criteria that does no have value whereas some have.

Predicate Builder

Predicate builder works the same as dynamic linq library but the main difference is that it allows to write more type safe queries easily. You can get the details about predicate builder form here: Dynamically Composing Expression Predicates.

The following code shows how you can use PredicateBuilder easily to create dynamic clause easily.

var predicate = PredicateBuilder.True<employee>();

        if(!string.IsNullOrEmpty(txtAddress.Text))
            predicate = predicate.And(e1 => e1.Address.Contains(txtAddress.Text));
        if (!string.IsNullOrEmpty(txtEmpId.Text))
            predicate = predicate.And(e1 => e1.Id == Convert.ToInt32(txtEmpId.Text));
        if (!string.IsNullOrEmpty(txtDesc.Text))
            predicate = predicate.And(e1 => e1.Desc.Contains(txtDesc.Text));
        if (!string.IsNullOrEmpty(txtName.Text))
            predicate = predicate.And(e1 => e1.Name.Contains(txtName.Text));

        EmployeeDataContext edb= new EmployeeDataContext();
        var emp = edb.Employees.Where(predicate);
        grdEmployee.DataSource = emp.ToList();
        grdEmployee.DataBind();

So as you see in the above code, I had created one PredicateBuilder for AND condition and building where clause in the same way you can build OR clause by using PredicateBuilder.

Difference Between Both Libraries

  • Predicatebuilder allows to build TypeSafe dynamic queries.
  • Dynamic LINQ library allows to build query with the Dynamic ORDER BY clause.

Note: The above difference is based on the experience that I have with both libraries. If you know more, then please comment so that I can include it in my list.