Need to disable auto mapping feature of EF7, wanna manage the mapping by code-first alone, no convention and auto-detection.
Given I have a class with 5 props that need to be saved and other 2 props to manage changes special way, I don't wanna to touch mapping code each time, when I introduce a new property into that class. I'm fine with if I need to do all the mapping with fluent API manually.
Before someone mentions [NotMapped] or Ignore() - no, this is not a solution, just a bypass (hack). I wanna have a clean mapping file, without mentioning properties inside that I don't intend to map.
Similar question, less verbose described: How to disable automapping of properties in Entity Framework