vote up 0 vote down star
1

I'm having a compiled query after which I've stacked a non-compiled query via an IQueryable extension method.

var resultSet = CompiledQueries.GetNewCustomers(datacontext).OrderBy(criteria.OrderExpression);

When I put a breakpoint at a non-compiled query, I can usually see the SQL expression generated. However, when I put a breakpoint after the compiled query (+IQueryable extension method which does dynamic ordering for me), I get the following:

resultSet.Expression {System.Data.Linq.SqlClient.SqlProvider+OneTimeEnumerable`1[Domain.Customer].OrderBy( => .LastName)}

What does this mean, and how can I get the actual SQL generated?

flag

68% accept rate

1 Answer

vote up 0 vote down

May be used should try Linq to Entity debug visualizer available at http://visualstudiogallery.msdn.microsoft.com/en-us/99468ece-689b-481c-868c-19e00e0a4e69

During debug you'll be able to view the lamda expression and native sql irrespective of the source database (MS Sql, Oracle, DB2, etc).

link|flag

Your Answer

Get an OpenID
or

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