Home
Options

SQL of update statement

When using C# statements with EF database context, how can I view the SQL produced for update/insert queries.
E.g.:

foreach(X item in Items)
{
item.Value = 123;
}
SaveChanges();

Comments

Sign In or Register to comment.