I wonder how to trace generated 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.
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.