Click here to Skip to main content
15,884,010 members
Articles / Programming Languages / C#

LINQ and Dynamic Predicate Construction at Runtime

Rate me:
Please Sign up or sign in to vote.
4.88/5 (29 votes)
13 Aug 2008CPOL7 min read 206.3K   2.2K   87  
Illustrating a multi-predicate injection pattern now possible with the new features of C# 3.0.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.SessionState;
using System.Data.SqlClient;

namespace LINQDynamicSearchDemo {
    public class Global : System.Web.HttpApplication {

        protected void Application_Start(object sender, EventArgs e) {
          /*  using (SqlConnection conn = new SqlConnection(@"Data Source=.\SQLExpress;Database=master;Integrated Security=True;")) {
                conn.Open();
                using (SqlCommand cmd = conn.CreateCommand()) {
                    cmd.CommandType = System.Data.CommandType.StoredProcedure;
                    cmd.CommandText = "sp_attach_single_file_db";

                    cmd.Parameters.AddWithValue("@dbname", "Northwind");
                    cmd.Parameters.AddWithValue("@physname", Server.MapPath("~/App_Data/NORTHWND.MDF"));
                    cmd.ExecuteNonQuery();
                }
            }*/
        }

        protected void Session_Start(object sender, EventArgs e) {

        }

        /// <summary>
        /// starting the request, build a context and stash it
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        protected void Application_BeginRequest(object sender, EventArgs e) {
            NorthwindDBDataContext ctx = new NorthwindDBDataContext();
            HttpContext.Current.Items["RequestContext"] = ctx;

        }

        /// <summary>
        /// when the request is over, kill the context
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        protected void Application_EndRequest(object sender, EventArgs e) {
            NorthwindDBDataContext ctx = HttpContext.Current.Items["RequestContext"] as NorthwindDBDataContext;
           
            // kill it proper-like
            if (ctx != null) {
                ctx.Dispose();
            }
        }

        protected void Application_AuthenticateRequest(object sender, EventArgs e) {

        }

        protected void Application_Error(object sender, EventArgs e) {

        }

        protected void Session_End(object sender, EventArgs e) {

        }

        protected void Application_End(object sender, EventArgs e) {

        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

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


Written By
United States United States
Dave works all day, and stays up all night coding and reading, surfing the intertubes.

Comments and Discussions