文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Linq中怎么实现动态条件查询

2023-06-17 21:57

关注

本篇文章给大家分享的是有关Linq中怎么实现动态条件查询,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一起来看看吧。

在开发项目的过程中,我们经常会遇到这样的需求,动态组合条件的查询。比如淘宝中的高级搜索:

Linq中怎么实现动态条件查询
实例讲解Linq动态条件查询

要实现这个功能,通常的做法是拼接SQL查询字符串,不管是放在程序中或是在存储过程中。现在出现了Linq,下面来看看Linq动态条件查询是怎样实现的。

还是以Northwind数据库为例,如果要查询所有CustomerID以A或者B字母开头的Customer,一般我们会这样写:

var results = ctx.Customers.Where(c => c.CustomerID.StartsWith("A") || c.CustomerID.StartsWith("B"));

如果需求改变,还要查询出以X字母或者Y字母开头的Customer,那可以增加查询条件:

var results = ctx.Customers.Where(c => c.CustomerID.StartsWith("A") || c.CustomerID.StartsWith("B")      || c.CustomerID.StartsWith("X") || c.CustomerID.StartsWith("Y"));

不过如果该需求不确定呢?我们不知道具体是哪些字母,可能传过来的是一个字符串数组:

string[] starts = ....  var results = ctx.Customers.Where(c => ?);

我们可能很自然的这样写,虽然很清楚要做什么,但是很可惜编译不通过,编译器并不允许我们像这样来组合条件。

Expression<FUNC<CUSTOMER,< SPAN>bool>> condition = cus => true;  foreach (string s in starts)  {      condition = cus => cus.CustomerID.StartsWith(s) || condition(cus);  }

在Linq动态条件中提供一些方法允许我们动态构造Lambda表达式。如Expression.Call, Expression.Or, Expression.And,这样代码就可以写成:

ParameterExpression c = Expression.Parameter(typeof(Customer), "c");   Expression condition = Expression.Constant(false);   foreach (string s in starts)   {       Expression con = Expression.Call(           Expression.Property(c, typeof(Customer).GetProperty("CustomerID")),           typeof(string).GetMethod("StartsWith", new Type[] { typeof(string) }),           Expression.Constant(s));       condition = Expression.Or(con, condition);   }   Expression<FUNC<CUSTOMER, < SPAN>bool>> end =       Expression.Lambda<FUNC<CUSTOMER, < SPAN>bool>>(condition, new ParameterExpression[] { c });

现在来解释Linq动态条件这段代码,首先构造了一个ParameterExpression对象,它作为参数传到Lambda表达中(相当于c => c.CustomerID.StartsWith("A")这里的c)。然后用值为false的Expression用来初始化该表达式(Expression.Constant(false))。

Expression con = Expression.Call(       Expression.Property(c, typeof(Customer).GetProperty("CustomerID")),       typeof(string).GetMethod("StartsWith", new Type[] { typeof(string) }),       Expression.Constant(s));   condition = Expression.Or(con, condition);

上面这段代码是重头戏,用Expression.Call方法动态构造一个表达式,其中Expression.Property(c, typeof(Customer).GetProperty("CustomerID"))转换为c.CustomerID,typeof(string).GetMethod("StartsWith", new Type[] { typeof(string) })表示string的StartsWith(string)方法,Expression.Constant(s)表示字符串常量,这个方法可以表示成:c.CustomerID.StartsWith(s)。然后调用Expression.Or方法组合各个条件(根据逻辑关系不同调用不同的方法,如or,and...)。

最后构造成Lambda表达式,现在就可以使用它了 ctx.Customers.Where(end)。

以上就是Linq中怎么实现动态条件查询,小编相信有部分知识点可能是我们日常工作会见到或用到的。希望你能通过这篇文章学到更多知识。更多详情敬请关注编程网行业资讯频道。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯