我已经使用ASP.Net MVC 5,EF 6和.Net 4.5.1创建了一个项目
在某些时候,我需要将项目所在的 namespace 从“MyTestProject”更改为“MyRealProject”。

在整个网站上进行了这些更改之后,我现在遇到了一些错误。
_ChangePasswordPartial.cshtml找不到“@model Microsoft.AspNet.Identity.ManageUserViewModel”,而_SetPasswordPartial.cshtml找不到“MyRealProject.ManageUserViewModel”

在项目中的任何地方都找不到包含类ManageUserViewModel的文件。在更改命名空间之前,已经找到了它,但现在找不到了。为什么?它去了哪里,我该如何解决?

最佳答案

发现这是一个已知问题:
http://blogs.msdn.com/b/webdev/archive/2014/08/04/announcing-new-web-features-in-visual-studio-2013-update-3-rtm.aspx



还在这里发布:https://stackoverflow.com/a/27687882/1071698。我不知道重复的问题和答案是什么规则,请根据需要进行编辑。

10-07 23:17