2

当我运行我的代码时

using (foodEntities db_Linq = new foodEntities())
{
    return db_Linq.Database.Exists();
    //return db_Linq.Foods.Any();
}

output我一直在窗口中收到此错误。

EntityFramework.dll 中出现了“System.InvalidOperationException”类型的第一次机会异常

可能是什么问题?web.config 中的数据库凭据?

其他信息:
我的解决方案中实际上有 2 个项目。一个是类库,另一个是 MVC 4 web 项目。
类库使用实体框架连接。Web 项目使用 ADO 连接字符串。
上述问题发生在 web 项目调用类库时。
上面给出的代码来自类库。

4

1 回答 1

0

What version of the EF are you using? It seemed to me that you use EF6 and you have issues with the namespaces.

Please, check Updating Applications to use EF6 link. The main part for you is "Update namespaces for any core EF types being used"

于 2013-11-08T08:45:16.713 回答