如何查看 SubSonic SimpleRepository 生成的 SQL?
我有这个玩具代码,工作正常,使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于 SQL Server,您始终可以运行 SQL Profiler 来查看查询。
For SQL Server, you can always run SQL Profiler to see the queries.
不幸的是,使用 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.