Background
Visual Studio scaffolding for new ASP.NET MVC Controllers bound to Entity Framework work well when the models use data annotations or the direct lines within OnModelCreating(DbModelBuilder)
to describe their characteristics.
Issue
However, in our scenario, the content of OnModelCreating
is refactored using individual EntityTypeConfiguration<T>
classes. When attempting to create a new Controller via the MVC+EF scaffolding the following pop up error occurs:
There was an error running the selected code generator: 'A configuration for type SomeModelClass has already been added. To reference the existing configuration use the
Entity<T>()
orComplexType<T>()
methods.'
Is there a fix (ex. custom code or project configuration)?
Here is something that seems to be the same issue as yours : Scaffolding controller doesn't work with visual studio 2013 update 3 and 4
This is a soluton that seems to work :