字符串 Linq 到 IQueryable
我该怎么做:
string queryString = @"from c in Stuffs select c";
IQueryable<Stuffs> q = StringToIQueryable(queryString);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅 动态 linq 库,描述了如何从字符串组成 linq 查询的谓词。我不确定是否可以传递整个 linq 查询,但通过一些自定义解析,您应该可以实现您想要的!
See dynamic linq library from Scott Gu that describes how to compose predicates of a linq query from strings. I'm not sure if it's possible to pass a whole linq query but with some custom parsing you should achieve what you want!