今天就跟大家聊聊有关LINQ中怎么实现动态查询,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。
LINQ动态查询实现实例:
case 'L': case 'l': NextChar(); if (ch == 'I' || ch == 'i') { NextChar(); if (ch == 'K' || ch == 'k') { NextChar(); if (ch == 'E' || ch == 'e') { NextChar(); t = TokenId.Like; } } } break;
需要修改的还有几个方法,不再一一细述,目的都是为了对Like操作符进行检查,并转到查应的操作。***增加一个方法GenerateLike,用来产生支持模糊查询的Lambda表达式。代码如下:
//创建Like表达式 Expression GenerateLike(Expression left, Expression right) { string value = right.ToString().Replace("\"",""); right = RemovePrecent(value); if (value.StartsWith("%") && value.EndsWith("%")) { MethodInfo method = left.Type.GetMethod("Contains"); return Expression.Call(left, method, new[] { right }); } else if(value.StartsWith("%")) { MethodInfo method = left.Type.GetMethod( "EndsWith", new[] { typeof(string) }); return Expression.Call(left, method, new[] { right }); } else if (value.EndsWith("%")) { MethodInfo method = left.Type.GetMethod( "StartsWith", new[] { typeof(string) }); return Expression.Call(left, method, new[] { right }); } return GenerateEqual(left, right); } //去掉查询字符中的%符号 Expression RemovePrecent(string value) { return Expression.Constant( value.Replace("%",String.Empty), typeof(string)); }
看完上述内容,你们对LINQ中怎么实现动态查询有进一步的了解吗?如果还想了解更多知识或者相关内容,请关注编程网行业资讯频道,感谢大家的支持。