Scaffolding controller doesn't work with visual studio 2013 update 2

后端 未结 16 3192
别跟我提以往
别跟我提以往 2020-11-27 03:54

PROBLEM:

I have updated to Visual Studio 2013 update 2 and now I cannot scaffold controllers.

The problem is not project specific: when I try to scaffold

16条回答
  •  日久生厌
    2020-11-27 03:54

    A combination of things have worked for me:

    1. Upgrade to Visual Studio 2013 Update 3.

    2. Upgrade Entity Framework to 6.1.1

    3. Modify the context configuration to use IDbSet<...> instead of DbSet<...> (I have heard that this can affect using async actions, but not apparently in my case, as I use this in my login actions, etc, as supplied by ASP.NET Identity 2 sample Nuget package).

    Quite why this combination works, I have no idea. But then given the thundering silence from MS, I am probably not alone. I guess update 2 just didn't work...

提交回复
热议问题