I got a MVC3 application using Entity Framework 4 and Sql Server.
How can I view all queries that has been invoked (and the amount of time that they took)?
|
I got a MVC3 application using Entity Framework 4 and Sql Server. How can I view all queries that has been invoked (and the amount of time that they took)?
| |||||
feedback
|
|
Use the sql profiler, it will give you all this information and more. Won't require any code changes either. Heres a link to a free one if you don't have the full toolset. | |||||
feedback
|
|
You cannot without additional tools. Simply EF doesn't have such feature. The referenced article describes some tools (SQL profiler, DotTrace, EF Provider Wrappers, EFProf, Huagati profiler) but there are also: Not every tool is free but those which are not have a trial version. | |||
|
feedback
|