Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我对一个由多个视图使用的模型进行更改,但忽略更新一个或多个视图以反映更改时,问题只有在我实际浏览到受影响的视图从而触发运行时编译时才会变得明显。
如何在 Visual Studio 的编译时找到此类错误?
默认情况下,MVC 视图是在运行时编译的。要改为在构建时编译它们:
<MvcBuildViews>false</MvcBuildViews>
<MvcBuildViews>true</MvcBuildViews>
建造时间会稍微长一些。然而,在我的(快速)系统中,我几乎没有注意到中型项目的区别。