具有实体框架的ProviderIncompatibleException

时间:2015-04-26 18:16:16

标签: entity-framework visual-studio-2010 visual-studio-2012 visual-studio-2013

发出此命令时,我总是收到此错误

http://localhost:19572/api/courses 

此方法正在生成异常

public IQueryable GetAllCourses()
{
    return _ctx.Courses
               .Include(“CourseSubject”)
               .Include(“CourseTutor”)
               .AsQueryable();
}

例外:

  

System.Data.Entity.CoreProviderIncompatibleException occurred in EntityFramework.dll`但未在用户代码中处理

     

其他信息从数据库获取提供程序信息时发生错误。这可能是由实体框架使用不正确的连接字符串引起的。检查内部异常以获取详细信息,并确保连接字符串正确。

当我检查Fiddler中的JSON元素时,我总是得到这个

  

ExceptionMessage =系统找不到指定的文件
  ExceptionType = System.ComponentModel.Win32Exception
  消息=发生错误。

我正在使用Entity Framework 6.0.1,我已经尝试了5但是它没有用,所以我对Entity Framework版本有什么不妥之处或什么?

0 个答案:

没有答案