views:

34

answers:

2

What is the best way to do this? Typically when I create a Query in SQL I create it in the designer of visual studio and I run it multiple times to see my results....

Is there such a thing for Linq-to-Entities?

+7  A: 

Try LinqPad.

Adam Robinson
LinqPad offers some very basic examples as well to get you started on many of the concepts related to LINQ. I find it very useful to run the queries using LinqPad before integrating them into the solution.
Nilesh Gule
A: 

Entity Profiler has been a great product we have used to profile our Entity Framework generate SQL queries.

JohnEgbert