Scaffolding controller doesn't work with visual studio 2013 update 3 and 4

前端 未结 11 1504
慢半拍i
慢半拍i 2020-12-23 19:53

Im unable to scaffold a controller (MVC5 Controller with views, using Entity Framework) in Visual studio 2013 (update 3 and 4). The error message is below:

There was

11条回答
  •  春和景丽
    2020-12-23 20:16

    I had the same issue today.

    I had added some custom configuration for one of my Model classes to add a relationship using the fluent API. This was specified in my dbContext class in the OnModelCreating override using the following:

    modelBuilder.Configurations.Add(new OrderConfiguration());
    

    Commenting out the above line allowed the Controller scaffolding to run as expected.

    VS 2013 update 2 had a problem with this and the scaffolding came up with an unhelpful error with no further information. In installed Update 3 and it gave just enough detail to track down the underlying issue.

    Jeff.

提交回复
热议问题