首页 > Web开发 > 详细

MVC中异常: An exception of type 'System.Data.ProviderIncompatibleException' occurred in EntityFramework.dll的一种解决办法

时间:2014-07-16 18:40:41      阅读:811      评论:0      收藏:0      [点我收藏+]

今天在调试MVC的例子的时候,总是出错(An exception of type ‘System.Data.ProviderIncompatibleException‘ occurred in EntityFramework.dll but was not handled in user code)。在这里报Exception.我改了好久connectionString,还是不能解决问题。

        public ActionResult Index()
        {
            return View(db.Movies.ToList());
        }

终于发现这个帖子的最后,我也加上了这个基类初始化方法: http://q.cnblogs.com/q/48825/。果然运行正常了。

 

    public class MovieDBContext : DbContext
    {
        public MovieDBContext()
            : base("DefaultConnection")
        { 
            
        }
        public DbSet<Movie> Movies {get;set;} 
    }

 

MVC中异常: An exception of type 'System.Data.ProviderIncompatibleException' occurred in EntityFramework.dll的一种解决办法,布布扣,bubuko.com

MVC中异常: An exception of type 'System.Data.ProviderIncompatibleException' occurred in EntityFramework.dll的一种解决办法

原文:http://www.cnblogs.com/simontaylor/p/3844989.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!