IQueryable参数-如何查看?
我有一个 LINQ-to-SQL (IQueryable) 查询,我需要对其进行调试,因为它非常慢。我已经设法从查询中获取 T-SQL(只需在放入断点后将鼠标悬停在 IQueryable 对象上),但查询使用 @p1、@p2 等参数 - 其中一些参数对我来说是个谜。我(通常是 COALESCE 函数中的)。有什么办法可以查看这些吗?
I have an LINQ-to-SQL (IQueryable) query, which I need to debug as it's horrendously slow. I've managed to get the T-SQL from the query (by simply hovering over the IQueryable object after I put a breakpoint in), but the query uses parameters such as @p1, @p2 etc - some of which are a mystery to me (usually ones in a COALESCE function). Is there anyway to view these?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Visual Studio 杂志建议使用名为LInQ to Entities Debug Visualizer 的 Visual Studio 扩展。
您可以在此处下载
The Visual Studio Magazine suggest a Visual Studio Extension called LInQ to Entities Debug Visualizer.
You can download it here