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?
