I wonder how to trace genrated SQL like DataContext in LinqToSql.

I also read articles about the solution of EFProviderWrapper on Jaroslaw Kowalski's blog, but it is based on ObjectContext, does not work for DbContext.

Anyone know how to do this in DbContext?

Thank you.

link|improve this question

75% accept rate
This is actually very good question. – Ladislav Mrnka Apr 9 '11 at 17:39
feedback

5 Answers

I use the SQL Server profiler tool to see exactly what SQL has been created. There is also http://efprof.com/ but it has quite a high price.

link|improve this answer
Thank you, I know that tool. And I'm looking for a DIY solution. – Chance Apr 9 '11 at 6:16
feedback
up vote 0 down vote accepted

The MVC-Mini-Profiler is a pwerful tool, not ony trace generated sql, but also profiling tool.

Using mvc-mini-profiler database profiling with Entity Framework Code First

link|improve this answer
feedback

You can use the ObjectQuery.ToTraceString method to view store commands (SQL statements for example). The How To on MSDN will show you how it can be used.

Note that in many cases, you will be able to cast an IQueryable (the return type from Linq extension methods such as IQueryable.Where) to an ObjectQuery so that you have access to the ToTraceString method.

link|improve this answer
this is not quite convenient. I recommend this : stackoverflow.com/questions/6550046/… – Chance Jul 20 '11 at 4:43
feedback

The easiest way with DbContext and DbSet<T> is just to use ToString() on the IQueryable you have built. For example:

var query = context.Blogs.Include(b => b.Posts)
                   .Where(b => b.Title == "AnyTitle");

string sql = query.ToString();

sql contains the SQL command which will be issued to the DB when the query gets executed.

link|improve this answer
That only helps if you are doing a search (that returns an IQueryable). If you are adding, modifying and deleting entities how do you view that sql? – codemonkey Aug 12 '11 at 19:08
@codemonkey: True, works only for queries. I don't think that there is any built-in way to trace all SQL statements with DbContext. – Slauma Aug 12 '11 at 21:02
feedback

I found this EFTracingProvider extension for the ObjectContext here:

http://efwrappers.codeplex.com/

But the example is for ObjectContext not DbContext, to get it to work with DbContext do the following in the constructor:

Public Sub New()
  MyBase.New(EFTracingProviderUtils.CreateTracedEntityConnection("MyDbConnection"), True)
  Dim context As ObjectContext = CType(Me, IObjectContextAdapter).ObjectContext
  context.EnableTracing()
End Sub

Oh and remember to set the config:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <system.diagnostics>
    <sources>
      <source name="EntityFramework.MyDbConnection" switchValue="All" />
    </sources>
 </system.diagnostics>

That then traces all the SQL to immediate window.

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.