is there a way to get the executed query including the parameters for ObjectQuery<T> instances in EF1?
I can do ToTraceString but that returns only the query, but not the parameters.
ObjectQuery<T> has a property Parameters, but they live in the .NET world, i.e. the value of ParameterType is System.String and not varchar(15).
How do I get this info?
Add a comment
|
1 Answer
You can use EF tracing provider or some commercial tools like:
2 Comments
Daniel Hilgarth
Thanks for the suggestions. Do I understand this correctly: There is no built in way?
Ladislav Mrnka
Yes you understand it correctly :) Btw here is whole article about available tools: msdn.microsoft.com/en-us/magazine/gg490349.aspx