A maneira rápida de verificar se você precisa SaveChanges () o contexto do seu banco de dados e / ou perguntar ao usuário se deseja ou não salvar as alterações:
/// <summary>
/// Detect whether the context is dirty (i.e., there are changes in entities in memory that have
/// not yet been saved to the database).
/// </summary>
/// <param name="context">The database context to check.</param>
/// <returns>True if dirty (unsaved changes); false otherwise.</returns>
public static bool IsDirty(this DbContext context)
{
Contract.Requires<ArgumentNullException>(context != null);
// Query the change tracker entries for any adds, modifications, or deletes.
IEnumerable<DbEntityEntry> res = from e in context.ChangeTracker.Entries()
where e.State.HasFlag(EntityState.Added) ||
e.State.HasFlag(EntityState.Modified) ||
e.State.HasFlag(EntityState.Deleted)
select e;
if (res.Any())
return true;
return false;
}
(Se você não usar contratos de código, precisará substituir essa linha Contract.Requires .)