码迷,mamicode.com
首页 > Web开发 > 详细

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

时间:2014-07-16 00:45:23      阅读:340      评论:0      收藏:0      [点我收藏+]

标签:blog   http   io   问题   cti   div   

今天在调试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的一种解决办法

标签:blog   http   io   问题   cti   div   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!