如何查看 SubSonic SimpleRepository 生成的 SQL?

发布于 2024-08-24 03:09:15 字数 212 浏览 6 评论 0原文

我有这个玩具代码,工作正常,使用 MySQL

  var r = new SimpleRepository("DB", SimpleRepositoryOptions.None);
  var q = r.Find<User>(x => x.UserName ==  "testuser");

如何查看该查询生成的 SQL?

I've got this toy code, works fine, using MySQL

  var r = new SimpleRepository("DB", SimpleRepositoryOptions.None);
  var q = r.Find<User>(x => x.UserName ==  "testuser");

How do I view the SQL generated by that query ?

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

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

发布评论

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

评论(2

伴我老 2024-08-31 03:09:15

对于 SQL Server,您始终可以运行 SQL Profiler 来查看查询。

For SQL Server, you can always run SQL Profiler to see the queries.

背叛残局 2024-08-31 03:09:15

不幸的是,使用 SimpleRepository 如果不进入 SubSonic 代码,你就无法做你想做的事。因为 Find 方法返回一个 IList,所以它会在您有机会评估将要执行的 SQL 之前执行。目前正在努力在 SubSonic 的未来版本中添加此功能,但在此之前您可能最好查看 MySQL 查询分析器

Unfortunately using SimpleRepository you can't do what you want without stepping into the SubSonic code. Because the Find method returns an IList it's executed before you get the chance to evaluate the SQL that's going to be executed. There are efforts underway to add this functionality in future versions of SubSonic but until then you're probably best looking at the MySQL Query Profiler.

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