分析 Linq 表达式
我想知道 IQueryable 对象的表达式是否包含某个“Where 子句”。
例如,作为 IQueryable 实例给出,可能类似于:
var query = customers.Where(c => c.Name == "Test");
如何确定查询是否按名称过滤客户?
I would like to know if an IQueryable object's Expression contains a certain "Where clause".
For example, given as IQueryable instance, which could be something like:
var query = customers.Where(c => c.Name == "Test");
How can I determine if the query is filtering the customers by Name?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须遍历表达式树(IQueryable.Expression),如果您使用的是 .NET4 ExpressionVisitor 类有帮助。
You have to walk the expression tree (IQueryable.Expression), if you are on .NET4 ExpressionVisitor class helps.