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

So, I would like to know oh to do a "full" tracing of Linq to Entities?

In other words:

I already know about the ToTraceString() method, but this only works on an ObjectQuery. I need it to work on on the entire Linq layer... so when I am doing IQueryable "Where" expressions and additional filtering that I can see the entire query, not just the initial ObjectQuery that was created. Am I using this wrong? I need some good examples of how to trace "everything" (at least tracing everything from one entity).


Edit 1: Remember this is for "Linq-to-Entities"

This is Linq-to-Entities NOT Linq-to-Sql (DataContext does not exist)

Edit 2:

I discovered the answer to my question by experimenting.

share|improve this question
stackoverflow.com/a/1828123/146738 see this answer and its comment. – Epskampie Nov 29 '11 at 16:11

3 Answers

up vote 60 down vote accepted

I found the answer...

So the IQueryable object that I am using for my final query (after defining all of my expressions select and include everything that I need) can be casted to a ObjectQuery.

Once you do that the method ToTraceString() contains all of the SQL generated!

objectQuery.ToTraceString()

If you are building a query and do this earlier(on an earlier variable) it will return the SQL generated up until that point.

Also, the Parameters property contains all of the SQL parameters.

I made a method that I am calling before I return any results for a Linq routine. This method makes the output of the query look pretty for a console application:

private const string debugSeperator =
    "-------------------------------------------------------------------------------";

public static IQueryable<T> TraceQuery<T>(IQueryable<T> query)
{
    if (query != null)
    {
        ObjectQuery<T> objectQuery = query as ObjectQuery<T>;
        if (objectQuery != null && Boolean.Parse(ConfigurationManager.AppSettings["Debugging"]))
        {
            StringBuilder queryString = new StringBuilder();
            queryString.Append(Environment.NewLine)
                .AppendLine(debugSeperator)
                .AppendLine("QUERY GENERATED...")
                .AppendLine(debugSeperator)
                .AppendLine(objectQuery.ToTraceString())
                .AppendLine(debugSeperator)
                .AppendLine(debugSeperator)
                .AppendLine("PARAMETERS...")
                .AppendLine(debugSeperator);
            foreach (ObjectParameter parameter in objectQuery.Parameters)
            {
                queryString.Append(String.Format("{0}({1}) \t- {2}", parameter.Name, parameter.ParameterType, parameter.Value)).Append(Environment.NewLine);
            }
            queryString.AppendLine(debugSeperator).Append(Environment.NewLine);
            Console.WriteLine(queryString);
            Trace.WriteLine(queryString);
        }
    }
    return query;
}

Note: Debugging needs to be set to true in your config file.

    <configuration>
      ...
      <appSettings>
        <add key="Debugging" value="true" />
        ...
      </appSettings>
      ...
    <configuration>
share|improve this answer
12  
The interisting part (objectQuery.ToTraceString()) is buried in lots of code. – VVS Sep 30 '08 at 6:28
The point of that code is to make a nice output for a console app. – Phobis Oct 2 '08 at 2:24
10  
how about non queries like updateObject, deleteObject or even AddToTable functions? – Nap Apr 13 '10 at 0:27
1  
This doesn't work for me. Even for a simple query like "from p in db.Persons select p" it returns a null reference when trying to cast to ObjectQuery. What am I missing? – PaulK Dec 20 '12 at 11:45

Use SQL Profiler instead - then you will get not only the SQL but also important related information such as I/O impact, timings etc etc.

...or if you want more advanced query profiling capabilities, take a look at this: http://huagati.blogspot.com/2010/06/entity-framework-support-in-huagati.html

share|improve this answer
2  
Not all of us have sysadmin (or even ALTER TRACE) access to the development database :( – BlueRaja - Danny Pflughoeft Dec 10 '10 at 23:09
You don't need sysadmin or trace rights to use the profiler I linked to. You need showplan privileges if you want to get the execution plans, but even if you don't have showplan privileges you can still use it to capture all SQL, I/O stats, and timings. – KristoferA - Huagati.com Dec 11 '10 at 5:58
4  
Not everyone has profiler ... a lot of people work with Express, which does not include it. – David Catriel May 2 '12 at 9:24

There is now a support for query tracing and caching support on EF CTP4 via the use of an outside library. Here are is the blog article with more details.

http://blogs.msdn.com/b/jkowalski/archive/2009/06/11/tracing-and-caching-in-entity-framework-available-on-msdn-code-gallery.aspx

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.