LINQ 和数据可视化

发布于 2024-11-03 06:53:15 字数 180 浏览 0 评论 0原文

当我们填充数据集或数据表时,我们可以将光标放在数据表或数据集的实例上,然后会出现一个弹出窗口,我们单击一个按钮,然后出现一个窗口,其中包含数据,我们可以看到数据集中存储了哪些数据或数据表。因此,当我们使用 linq 时,有什么方法可以查看 linq 结果集中存储了哪些数据,请详细讨论在调试时如何查看 linq 结果集中提取并存储了哪些数据。谢谢

when we populate dataset or datatable the we can place the cursor on the instace of datatable or dataset and then a popup comes and there is a button where we click and then a window appear with data from there we can see what data is stored in dataset or datatable. so when we work with linq is there any way to see what data is stored in linq resultset please discuss in detail how to see what data is fetched and stored in linq result set when we debug. thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

已下线请稍等 2024-11-10 06:53:15

由于 LINQ 表达式通常会产生具有惰性求值和延迟执行的投影,因此为了查看 LINQ 表达式的结果,需要执行它。

监视窗口中有一个绿色的小“循环”箭头,上面写着“枚举结果”,单击该箭头时,将执行表达式并显示结果。

Because LINQ expressions usually result in a projection with lazy evaluation and deferred execution, in order to see the results of a LINQ expression, it needs to be executed.

There is a little green "cycle" arrow saying something like "enumerate results" in the watch window that, when clicked, will execute the expression and show the results.

看春风乍起 2024-11-10 06:53:15

不过:请查看 LINQPad。我相信它正是您所需要的

Nevertheless: have a look at LINQPad. I believe it will have exactly what you need

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