码迷,mamicode.com
首页 > 其他好文 > 详细

根据条件动态拼接LinQ的where条件字串

时间:2016-08-13 11:27:17      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:

var items1 = from c in customer
    where c.Id != null && (1 == 1 ? c.FirstName == "AAA" : true) && (1 == 1 ? c.LastName == "BBB" : true)
     select c;

List<Customer> qwe11 = items1.ToList();

如果条件不多,可以直接这样写。

 

也可以用Lambda:

var items = customer.Where(m => m.Id != null);

if (1 == 1)
items = customer.Where(m => m.FirstName == "Johnny");

if (1 == 1)
items = customer.Where(m => m.LastName == "Doe");
List<Customer> qwe = items.ToList();

 

注意,这里只会查询一次,不会造成性能浪费。

根据条件动态拼接LinQ的where条件字串

标签:

原文地址:http://www.cnblogs.com/lbhqq/p/5767575.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!