I am running a C # 4.0 site that uses Entity Framework 4.0 to interact with a database. I want to find pages that force the Entity Framework to make the most calls in the database (since the more calls, the slower the page will be).
I would add some tools for the Entity Framework, actual users will manage the site for a while, and then analyze some kind of log to find out which pages generated the most calls to the database.
Is there any performance counter or other event that can be checked to find out when the database query was created by the Entity Framework?
source
share