使用 LINQ 在运行时查询数据的工具

发布于 2024-09-24 01:15:09 字数 195 浏览 3 评论 0原文

我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

天煞孤星 2024-10-01 01:15:09

老实说,并不完全清楚您的意思...但是 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.

怀中猫帐中妖 2024-10-01 01:15:09

您应该查看 LinqPad http://www.linqpad.net/

You should check out LinqPad http://www.linqpad.net/

风为裳 2024-10-01 01:15:09

当然,该工具名为 DataTable.AsEnumerable ()

Sure, the tool is called DataTable.AsEnumerable().

澜川若宁 2024-10-01 01:15:09

您可以将 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文