在运行时将 SQL 转换为 Linq To Objects 表达式
有谁知道有什么库可以用来解析 SQL 查询并构建 linq 表达式,然后可以对 linq to 对象进行编译和使用吗?
这种方法只需要适用于简单的查询,对于复杂的查询,我可以编写一个硬编码的自定义查询
更新:我发现了一个名为 NQuery 的东西,它应该对我有用 http://nquery.codeplex.com/ 所以不要浪费时间回答!
Does anyone know of any libraries that one can use to parse a SQL query and build up a linq expression which can then be compiled and used against linq to objects?
This approach only needs to work for simple queries, for complex ones I can write a hardcoded custom query
UPDATE: I've found something called NQuery which should do the trick for me http://nquery.codeplex.com/ so don't waste your time answering!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有一个项目调用 [SqlLinq] (https://github.com/dkackman/SqlLinq) 转换SQL 到 C# 表达式树中,并对它们进行计算。
There is a project call [SqlLinq] (https://github.com/dkackman/SqlLinq) which converts SQL into c# Expression Trees, and evaluates them.