我正在使用Visual Studio 2013.当我打开MVC4项目视图时,我遇到了一个问题。它给出了以下错误。
the document cannot be opened. it has been renamed deleted or moved
我已经搜索过,发现删除.suo文件后。它可以解决。我做了同样的事情,问题得到解决,但其他问题已经到来。现在它抛出对象引用错误。
Object reference not set to an instance of an object
任何人都知道如何解决这个问题。请提出建议。
由于
答案 0 :(得分:-1)
Object reference not set to an instance of an object
当属性包含null
值或类型不匹配时,通常会发生此错误。
如果模型传递了列表类型值,则视图必须在顶部包含以下行。或者检查是否包含null
的任何属性不允许为null。
@modes IEnumerable<Example.ExampleViewModel>