I use entity framework 6.1 with Code First approach. When I use DbContext.SaveChanges() as the result I can get
The number of objects written to the underlying database.
But is that possible to get advanced statistics: number of rows deleted, number of rows edited, number of rows added?
My supergoal is to get per-Entity staticstics.
Maybe before actually calling SaveChanges()..