How would i know the SQL statement generated by my Linq to sql query?

link|improve this question

feedback

3 Answers

up vote 6 down vote accepted

You could see the SQL statement by using the toString() statement.

var customers = from cust in Customers
    	select cust;

Console.WriteLine(customers.ToString());

or you could do something like this.

DataContext context = new DataContext(...);
StringWriter writer = new StringWriter();
context.Log = writer;

var customers = from cust in Customers
    	select cust;

Console.WriteLine(writer.ToString());
link|improve this answer
1  
Thanks... this works :) – mcxiand Oct 16 '09 at 10:15
Wow, who knew. I've been using LINQ for a couple of years now and never had any idea that Query.ToString would return the SQL command. – Herb Caudill Oct 15 '10 at 13:06
feedback

Use LINQ to SQL Debugger Visualizer.

Alternatively, you can set dataContext.Log property to Console.Out or something and the SQL statement, along with actual parameter values will be written out to that stream.

link|improve this answer
+1 thanks for the Console.Out tip! – Tj Kellie Jan 29 '10 at 21:57
feedback

There is a tool to check the query http://www.linqpad.net/

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.