I would like to know how I could see the SQL command when I use the saveChanges
method in Entity Framework.
I am using EF 4.4.
Thanks.
I would like to know how I could see the SQL command when I use the saveChanges
method in Entity Framework.
I am using EF 4.4.
Thanks.
I tend to use SQL Profiler what installs with management studio. It will show every request made to your SQL server.
Or as Justin pointed out you can do the follow: How do I view the SQL generated by the entity framework?