Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a simple way to view the machine generated SQL for SaveChanges() on an Entity Framework context?

share|improve this question

3 Answers

up vote 9 down vote accepted

Look at EFTracingProvider. If you use SQL Server, you can use SQL Profiler or free AnjLab SQLProfiler.

EDIT:

AnjLab SQL Profiler is not free any more, but you can still find old, free versions. Please look at this question:

Where can I get the old, free version of Anjlab's SQL Profiler?

share|improve this answer
I was hoping for something really simple like ObjectQuery.ToTraceString() but obviously nothing similar exists. I will take a look at EFTracingProvider. Thanks! – wpfwannabe Mar 20 '10 at 14:49

The simplest way is using sql server profiler, it will show you what is executed against the db.

share|improve this answer
3  
Unfortunately, I am using SQL Express and won't be moving to full SQL Server. – wpfwannabe Mar 20 '10 at 14:47

I wanted to temporarily trace all the SQL that was being sent to the database. My solution outputs all SQL to a text file(s) when debugging.

I used the EFTracingProvider

  1. compiled the source from here: http://code.msdn.com/EFProviderWrappers
  2. followed the instructions under the "Using the sample code" section here: http://blogs.msdn.com/b/jkowalski/archive/2009/06/11/tracing-and-caching-in-entity-framework-available-on-msdn-code-gallery.aspx (compiled, referenced DLL's, copied config, copied and tweaked the one source file)
  3. Modified my Repository class temporarily like so:

in my repository:

EntityContext db;
TextWriter logFile = null;

public EntityContext()
{
    //if normal
    //db = EntityContext();
    //if debug
    db = new TracingEntityContext();
    logFile = File.CreateText(String.Format("d:\\temp\\EntityContextLog-{0:yyyy-MM-dd hh-mm-ss.ffff}.txt", DateTime.Now));
    ((TracingEntityContext)db).Log = logFile;
}
public void Dispose()
{
    if (logFile != null)
        logFile.Dispose();
    db.Dispose();
}

Hope that helps someone, instead of just pointing to a link.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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