gpt4 book ai didi

c# - 提供程序未返回 ProviderManifestToken 字符串 - .NET MVC 3 #C

转载 作者:行者123 更新时间:2023-11-30 18:38:03 26 4
gpt4 key购买 nike

我正在学习使用 .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/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com