作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在学习使用 .NET MVC 3 和 C# 进行开发。我正在尝试使用“代码优先”方法创建应用程序,但是当我尝试从我的数据库中提取数据时,我收到一条错误消息“提供商未返回 ProviderManifestToken 字符串”。
我看过其他一些关于此错误的帖子,但我无法在这些帖子中找到适合我的解决方案。
我在 Windows 7 64 位上使用 MS Visual Web Developer Express 2010。我使用 SQL Compact Server 4.0 作为我的数据库。
这段代码尝试运行时会触发错误:
public class StoreController : Controller
{
MusicStoreEntities storeDB = new MusicStoreEntities();
//
// GET: /Store/
public ActionResult Index()
{
var genres = storeDB.Genres.ToList(); // This line causes the error
return View(genres);
}
}
我的 DbContext 类如下:
public class MusicStoreEntities : DbContext
{
public DbSet<Album> Albums { get; set; }
public DbSet<Genre> Genres { get; set; }
}
还有我的连接字符串:
<connectionStrings>
<add name="MusicStoreEntities"
connectionString="Data Source=|DataDirectory|MvcMusicStore.sdf"
providerName="System.Data.SqlServerCe.4.0"/>
</connectionStrings>
有什么地方看起来不对吗?如果您需要更多信息,请询问。
谢谢
最佳答案
你只需要加上“.”对于数据源中的 localmachine 如下:
<add name="MYSQLSERVER"
providerName="System.Data.SqlClient"
connectionString="Data Source=.\MYSQLSERVER;Trusted_Connection=true"></add><br/>
</connectionStrings>
关于c# - 提供程序未返回 ProviderManifestToken 字符串 - .NET MVC 3 #C,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11920658/
我是一名优秀的程序员,十分优秀!