MVC: 找不到请求的 .Net Framework Data Provider。可能没有安装

遇到这个问题,我是下载SQL Server Compact 4.0 安装后就可以解决。下载地址是:

http://www.microsoft.com/downloads/zh-cn/details.aspx?familyid=033cfb76-5382-44fb-bc7e-b3c8174832e2&displaylang=zh-cn

在寻找解决办法的时候还找到一个学习MVC的例子,MVC music store  http://mvcmusicstore.codeplex.com/ 我现在学习的例子是ContosoUniversity

在寻找解决方法时,找到几个解答,在这里收集起来。

 

在C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\CONFIG中machine.config(xml文件)中有一个字段是

添加注册,或者<name="MySQL Data Provider"

   

     

     

     

     

     

     type="MySql.Data.MySqlClient.MySqlClientFactory, MySql.Data, Version=5.0.2.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d" />


   

 

在最后面我想添加一些MVC开发需要安装的软件,

Before you start, make sure you have the following software installed on your computer:
 Visual Studio 2010 SP1 or Visual Web Developer Express 2010 SP1 (If you use one of these links, the following items will be installed automatically.)
 ASP.NET MVC 3 Tools Update
 Microsoft SQL Server Compact 4.0
 Microsoft Visual Studio 2010 SP1 Tools for SQL Server Compact 4.0

你可能感兴趣的:(技术学习)