Is there any way to profile EF or Ado.net queires which are executing inside a assembly without making any modification on the assembly. Need somthing like this VSInstr
Asked
Active
Viewed 144 times
1
-
1Possible duplicate of [Profile EntityFramework](http://stackoverflow.com/questions/13812256/profile-entityframework) – Apr 10 '16 at 09:36
1 Answers
1
Visual studio's Ultimate / Enterprise editions support IntiliTrace in which you can find outgoing ADO.Net
queries.
If products are not available to you can examine the Database's logs. Assuming you are using MSSQLServer you can use SQL Server Profiler.

Community
- 1
- 1

Matan Shahar
- 3,190
- 2
- 20
- 45
-
Thanks for your time. This requires VS IDE to be installed on the my development build server, which I am not allowed to. Is there any way I can trace the log through my compiled version of .dll files and .pdb files to achieve the result. Like dot net performance tools does the code tracing through assemblies. Please correct if I am wrong. – biju m Apr 10 '16 at 09:47