如何在 SQL Server Profiler 中查看实体框架调用?
我有一个使用实体框架的项目。我想运行 SQL Server Profiler 以查看对数据库进行了多少次调用。我已经启用了几乎所有可以跟踪的不同事件,但我仍然没有看到事件被触发。
我在网上搜索了一下,似乎有一些工具可以购买。
I have a project that utilizes Entity Framework. I want to run SQL Server Profiler to see how many calls are being made to the database. I've enabled almost every different event possible to trace, but still I don't see the events being triggered.
I've searched online and it appears that a few tools are available to purchase.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我发现了这个问题。我假设 Web 应用程序启动时实体框架正在加载所有实体。我必须首先调用一个实体才能显示查询。
I found out the issue. I assumed Entity Framework was loading all of the entities when the web app started. I had to call a entity first for the queries to show up.