vote up 1 vote down star

I'm using Linq to SQL. I have a DataContext against which I am .SubmitChanges()'ing. There is an error inserting the identity field, and I'd like to see the query it's using to insert this identity field.

I don't see the query itself within the quickwatch; where can I find it from within the debugger?

flag

4 Answers

vote up 1 vote down check

Run SQL Profiler if you have it. It'll show all traffic to your database, including SQL command text.

link|flag
Thanks; that works. However, I was hoping to see it from VS. – tsilb Mar 12 at 2:09
SQL Profiler is handy for other reasons too though, eg: seeing the load your code is putting on the DB. – geofftnz Mar 12 at 2:16
vote up 0 vote down

You can also configure your datacontext to output the queries into a file.

link|flag
vote up 2 vote down

Lots of people have been writing their own "DebugWriter" and attaching it like so:

// Add this class somewhere in your project...
class DebugTextWriter : System.IO.TextWriter {
   public override void Write(char[] buffer, int index, int count) {
       System.Diagnostics.Debug.Write(new String(buffer, index, count));
   }

   public override void Write(string value) {
       System.Diagnostics.Debug.Write(value);
   }

   public override Encoding Encoding {
       get { return System.Text.Encoding.Default; }
   }
}

// Then attach it to the Log property of your DataContext...
myDataContext.Log = new DebugTextWriter()

This will output everything that Linq-to-Sql is doing into Visual Studio's debug window.

link|flag
vote up 1 vote down

Further to Portman's answer, if you're a console application it's as simple as:

myDataContext.Log = Console.Out;

HTH
Kev

link|flag

Your Answer

Get an OpenID
or

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