I can see the SQL generated by Entity Framework for select operations in Visual studio, but not for insert, update and delete. how can I see the SQL generated for \"DataCont
Here's something really simple that I found:
context.Database.Log = x => System.Diagnostics.Debug.WriteLine(x);