Is there a simple way to view the machine generated SQL for SaveChanges() on an Entity Framework context?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Look at EFTracingProvider. If you use SQL Server, you can use SQL Profiler or free AnjLab SQLProfiler. EDIT: AnjLab SQL Profiler is not free any more, but you can still find old, free versions. Please look at this question: Where can I get the old, free version of Anjlab's SQL Profiler? |
||||
|
|
The simplest way is using sql server profiler, it will show you what is executed against the db. |
|||||
|
|
I wanted to temporarily trace all the SQL that was being sent to the database. My solution outputs all SQL to a text file(s) when debugging. I used the EFTracingProvider
in my repository:
Hope that helps someone, instead of just pointing to a link. |
|||
|
|