我收到这个奇怪的错误。我目前没有连接到任何数据库。我是 在MVC4上工作。任何人都可以帮忙吗?
答案 0 :(得分:0)
这是ASP.NET Web应用程序中的一个例外。它与ASP.NET或MVC无关。反过来,它是文件未加载错误。
http://msdn.microsoft.com/en-us/library/system.io.fileloadexception(v=vs.110).aspx(System.IO.FileLoadException)
以上是此例外的MSDN帖子的链接。您可以通过名称了解,在找到文件时抛出此异常,但由于某些错误而未加载。
对于在应用程序中找到但未加载的程序集文件,通常会抛出这些错误。
答案 1 :(得分:0)
尝试添加一个新类,例如Fixup.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
// this two lines are the important ones
namespace WebMatrix.Data { internal class Ignore { } }
namespace WebMatrix.WebData { internal class Ignore { } }