使用 LINQ 在运行时查询数据的工具
我使用 LINQ 的次数越多,我就越喜欢它及其语法。我每天都会进行大量数据比较。我真正喜欢的是一个允许我加载 DataSet,然后在运行时使用 LINQ 查询查询该 DataSet 的工具。我主要只是想要一个工具,并且能够动态加载我的数据集。
这样的事情存在吗?我不认为 LINQ 最初是为这种类型的用途而设计的,但我觉得如果它存在的话,它将是一个强大的工具。
The more and more I use the LINQ the more and more I really enjoy it, and it's syntax. I do a lot of data comparisons on a day to day basis. What I would really enjoy is a tool that allows me to load a DataSet, and then query that DataSet at runtime with LINQ queries. I primarily just want a tool, and to be able to load my DataSets dynamically.
Does something like this exist? I don't think LINQ was originally intended for this type of use, but I feel like it would be a powerful tool to have if it existed.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
老实说,并不完全清楚您的意思...但是 LINQPad 允许您加载数据然后查询它。
强类型数据集已经很容易使用 LINQ 进行查询;弱类型的有点麻烦,但是 LINQ to DataSet 使它比其他方式更容易。
It's not entirely clear what you mean to be honest... but LINQPad allows you to load data and then query it.
Strongly-typed datasets are already easy to query with LINQ; weakly typed ones are a bit more of a pain, but LINQ to DataSet makes it easier than it would be otherwise.
您应该查看 LinqPad http://www.linqpad.net/
You should check out LinqPad http://www.linqpad.net/
当然,该工具名为
DataTable.AsEnumerable ()
。Sure, the tool is called
DataTable.AsEnumerable()
.您可以将 LINQ 与规范/筛选模式结合使用来创建动态生成的查询。 Github 上有 LINQ-to-SQL 和 LINQ-to-NHibernate 实现。
You can use LINQ with the specification/filter pattern to create dynamically generated queries. There's a LINQ-to-SQL and LINQ-to-NHibernate implementation on Github.