当前位置:Gxlcms > 数据库问题 > LINQ to SQL 运行时动态构建查询条件

LINQ to SQL 运行时动态构建查询条件

时间:2021-07-01 10:21:17 帮助过:7人阅读

 1技术分享    public static IEnumerable<Customers> GetCustomersFunc1(string[] keywords)
 2技术分享    {
 3技术分享        DataClassesDataContext dc = new DataClassesDataContext();
 4技术分享
 5技术分享        //创建一个静态类型为Customers的参数表达式
 6技术分享        ParameterExpression c = Expression.Parameter(typeof(Customers), "c");
 7技术分享
 8技术分享        //创建一个恒等于false的表达式,用于与下面的表达式取并集
 9技术分享        Expression condition = Expression.Constant(false);
10技术分享        foreach (string keyword in keywords)
11技术分享        {
12技术分享            //该表达式用于判断一个Customers类的CompanyName属性的值是否包含了关键字keyword
13技术分享            Expression con = Expression.Call(                                   
14技术分享                Expression.Property(c, typeof(Customers).GetProperty("CompanyName")),
15技术分享                typeof(string).GetMethod("Contains", new Type[] { typeof(string) }),
16技术分享                Expression.Constant(keyword));
17技术分享
18技术分享            //与之前的condition表达式进行逻辑或运算。
19技术分享            //如果要查找的项需要包含keywords中的所有关键字,则可使用Expression.And(con, condition)
20技术分享            //并且将Expression condition = Expression.Constant(false);
21技术分享            //改成Expression condition = Expression.Constant(true);
22技术分享            condition = Expression.Or(con, condition);                         
23技术分享        }
24技术分享
25技术分享        //创建一个以一个Customers类作为参数并返回bool类型的委托
26技术分享        Expression<Func<Customers, bool>> end = Expression.Lambda<Func<Customers, bool>>(condition, new ParameterExpression[] { c });
27技术分享
28技术分享        //使用刚才构建的条件进行查询
29技术分享        var result = dc.Customers.Where(end);
30技术分享        return result;
31技术分享    }
32技术分享
技术分享


2.使用System.Linq.Dynamic

技术分享  1技术分享    public static IEnumerable<Customers> GetCustomersFunc2(string[] keywords)
 2技术分享    {
 3技术分享        //需要引用System.Linq.Dynamic。Dynamic.cs文件可在LinqSamples中找到
 4技术分享
 5技术分享        DataClassesDataContext dc = new DataClassesDataContext();
 6技术分享        string queryString = "";
 7技术分享        foreach (string keyword in keywords)
 8技术分享        {
 9技术分享            //原形为(c=>c.CompanyName.Contains(keyword1)) || (c=>c.CompanyName.Contains(keyword2)) || 技术分享
10技术分享            queryString += "CompanyName.Contains(\"" + keyword + "\") or ";
11技术分享        }
12技术分享
13技术分享        //与false进行逻辑或运算,为了避免queryString中最后的or出现语法错误
14技术分享        queryString += "1=0";
15技术分享        return dc.Customers.Where(queryString);
16技术分享    }
17技术分享
技术分享

3.披着Linq的外衣拼接SQL语句

技术分享  1技术分享    public static IEnumerable<Customers> GetCustomersFunc3(string[] keywords)
 2技术分享    {
 3技术分享        //这个方法其实是伪Linq,核心还是在拼接SQL语句,所以就不多解释了
 4技术分享        DataClassesDataContext dc = new DataClassesDataContext();
 5技术分享        string sqlQuery = "SELECT [CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], ";
 6技术分享        sqlQuery += "[City], [Region], [PostalCode],[Country], [Phone], [Fax] FROM [dbo].[Customers]  WHERE ";
 7技术分享        foreach (string keyword in keywords)
 8技术分享        {
 9技术分享            sqlQuery += "([CompanyName] LIKE ‘%" + keyword + "%‘ ) OR ";
10技术分享        }
11技术分享        sqlQuery += "(1=0)";
12技术分享        return dc.ExecuteQuery<Customers>(sqlQuery);
13技术分享    }
14技术分享
15技术分享
出处:http://www.cnblogs.com/snowdream/archive/2008/07/18/1246308.html  

LINQ to SQL 运行时动态构建查询条件

标签:

人气教程排行