在开发项目的过程中,我们经常会遇到这样的需求,动态组合条件的查询。比如淘宝中的高级搜索:
要实现这个功能,通常的做法是拼接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,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, bool>> end = Expression.Lambda<Func<Customer, bool>>(condition, new ParameterExpression[] { c });
现在来解释这段代码,首先构造了一个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)。
但是这个并不是最好的解决方法,使用这种方式生成的Lambda表达式,由于用到了反射,这样编译器不能检查错误,很可能因为一个字母写错导致运行时抛出异常。因此,要用一个更好的方案,既能满足我们的要求,又能让编译器更好的支持,就留到下一篇文章说吧。
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· 单线程的Redis速度为什么快?
· SQL Server 2025 AI相关能力初探
· 展开说说关于C#中ORM框架的用法!
· AI编程工具终极对决:字节Trae VS Cursor,谁才是开发者新宠?