LINQ 和数据可视化
当我们填充数据集或数据表时,我们可以将光标放在数据表或数据集的实例上,然后会出现一个弹出窗口,我们单击一个按钮,然后出现一个窗口,其中包含数据,我们可以看到数据集中存储了哪些数据或数据表。因此,当我们使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
由于 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.
不过:请查看 LINQPad。我相信它正是您所需要的
Nevertheless: have a look at LINQPad. I believe it will have exactly what you need