vote up 7 vote down star
5

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.

flag

72% accept rate

3 Answers

vote up 1 vote down

You can log everything that is done on your DataContext like so:

var dc = New MyDataContext();
var sb = New StringBuilder();
dc.Log = New StringWriter(sb);

// do some stuff with dc

dc.Log.Flush();
// now sb has everything that happened on the context.
link|flag
I don't see how to do this with linq-to-entities? Where does the DataContext come from? – Phobis Sep 27 '08 at 2:04
You are correct. my example is for linq2sql and not linq2entities. – Stefan Rusek Sep 30 '08 at 19:00
vote up 7 vote down check

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>
link|flag
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
vote up 1 vote down

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.

For a more detailed answer, see: http://stackoverflow.com/questions/76208/good-way-to-time-sql-queries-when-using-linq-to-sql#79665

link|flag

Your Answer

Get an OpenID
or

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