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)?

link|improve this question

1  
I think best way is to use SQL Server Profiler from SQL Server Management Studio – BigMike Oct 25 '11 at 13:00
feedback

2 Answers

up vote 3 down vote accepted

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.

http://sites.google.com/site/sqlprofiler

link|improve this answer
But the question is tagged with SQL Server Express tag = no SQL profiler. – Ladislav Mrnka Oct 25 '11 at 13:05
sites.google.com/site/sqlprofiler, also he may have the full toolset but only have sqlexpress deployed. – RubbleFord Oct 25 '11 at 13:08
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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.