How do you view Entity Framework calls in SQL Server Profiler?
I have a project that utilizes Entity Framework. I want to run SQL S开发者_如何转开发erver 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.
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.
精彩评论