Description
At present, the only way to see the query plan generated by a LINQ query in C# is to:
- Call GetFieldsQuery()
- Prepend the string "explain " to the resulting string
- execute the query in the step above and retrieve the plan
At present, the only way to see the query plan generated by a LINQ query in C# is to: