从编译的 linq 查询中获取生成的 sql

发布于 2024-10-31 04:39:57 字数 34 浏览 6 评论 0原文

是否可以从编译的 linq 查询中获取生成的 SQL?

Is it possible to get the generated SQL from a compiled linq query?

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

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

发布评论

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

评论(3

年华零落成诗 2024-11-07 04:39:57

您可以:

  1. 使用上下文的 log 属性将生成的查询重定向到 Visual Studio 的输出窗口。 链接
  2. 或者使用 LINQ to SQL 调试可视化工具。 链接

You can:

  1. Use the log property of the context to redirect the generated query to the output window of Visual Studio. link
  2. Or use the LINQ to SQL Debug Visualizer. link
寒江雪… 2024-11-07 04:39:57

使用 LinqPad

或者使用 sql server profiler 来观察查询。我知道您曾经能够在调试中遍历查询变量,它会向您显示它将要执行的查询,但我不完全确定这是否仍然有效(绝对不适用于客户端应用程序)

Use LinqPad :

Or alternatively get use sql server profiler to watch the query. I know you used to be able to however over the query variable in debug and it would show you the query it is going to execute but I am not entirely sure if that still works (Definitely not on client side apps)

诺曦 2024-11-07 04:39:57

谢谢 jfs,但是您的选项 #1 中的链接不再有效。它没有显示任何相关文章。 Chris B 的 MSDN 文章链接对我有帮助。

这是我的解决方案,因为我的不是控制台应用程序:

TextWriter tw = new StringWriter();
db.Log = tw;
IQueryable<Customer> custQuery =
    from cust in db.Customers
    where cust.City == "London"
    select cust;

string output = tw.ToString();   
// output variable has the generate SQL now

Thanks jfs, but the link in your option #1 is not good anymore. It is not showing any relevant article. Chris B's link to the MSDN article helped me.

Here is my solution since mine is not a Console application:

TextWriter tw = new StringWriter();
db.Log = tw;
IQueryable<Customer> custQuery =
    from cust in db.Customers
    where cust.City == "London"
    select cust;

string output = tw.ToString();   
// output variable has the generate SQL now
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文