gpt4 book ai didi

database - Entity Framework 代码首先导致数据库访问异常

转载 作者:搜寻专家 更新时间:2023-10-30 20:53:29 25 4
gpt4 key购买 nike

最近开始尝试深入研究 Entity Framework 的代码优先方法。我按照各种教程创建了一些数据库表,但没有一个能达到目的。

现在大约有 3 到 4 次从头开始,因为异常变得越来越荒谬。上次在第一次访问时创建了数据库,但由于缺少权限(使用集成安全性 - wat?)而无法在第二次调试 session 中连接到数据库。显然 .mdf 被系统进程阻止,只有在安全模式下重新启动才能让我摆脱它。

无论如何,重新开始。我有一个类库,其中包含数据库模型和用于外部访问的网关类。我有一个控制台项目来测试数据库的创建和访问。 EF 通过 NuGet 安装在类库中,对 EntityFramework.SqlServer.dll 的引用添加到控制台项目。

两个项目中的连接字符串如下所示:

<connectionStrings>
<add name="DbConnection"
connectionString="Data Source=(LocalDb)\v11.0;AttachDbFilename=|DataDirectory|\LanguageCreator.mdf;Initial Catalog=LanguageCreator;Integrated Security=SSPI"
providerName="System.Data.SqlClient" />
</connectionStrings>

我的上下文类如下所示:

public class LanguageContext : DbContext {
public LanguageContext() : base("DbConnection") {
// Have to set the DataDirectory in code because the wrong one gets set from the config.
AppDomain.CurrentDomain.SetData("DataDirectory", Directory.GetCurrentDirectory());

Database.SetInitializer(new CreateDatabaseIfNotExists<LanguageContext>());

public DbSet<Language> Languages { get; set; }
public DbSet< ... blablabla various other DbSets following, nothing of interest here.
}

这是我的网关的样子:

public class Gateway {
public void InitializeDatabase() {
using (LanguageContext context = new LanguageContext()) {
context.Database.Initialize(true);

// I did have a configuration class for migration, which seeds some initial data, which is why I'm trying to read the WordTypes here but I left that thing out this time ... will try to add it later on.
IEnumerable<WordType> wordTypes = context.WordTypes.AsEnumerable();

List<Language> languages = context.Languages.ToList();
}
}
}

调用看起来像这样:

class Program {
static void Main(string[] args) {
Gateway databaseGateway = new Gateway();

databaseGateway.InitializeDatabase();
}
}

现在,没有什么特别的,我在启动调试 session 时收到以下错误:

A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: SQL Network Interfaces, error: 50 - Local Database Runtime error occurred. Cannot create an automatic instance. See the Windows Application event log for error details.

不幸的是,Windows 应用程序事件日志没有显示该错误的任何详细信息。也可能是我太笨了,没找到...

究竟是什么导致了这个问题,我该如何解决?我发现的所有内容都是关于访问外部 SQL Server 的,但我只是希望 EF 在本地创建一个 .mdf 并连接到它。

最佳答案

总体而言,我对 Entity Framework 和数据库还很陌生,但我有一些建议可能有助于缩小问题的范围。

  1. “验证实例名称是否正确以及 SQL Server 配置为允许远程连接。”通过使用不同的程序连接到服务器来查看问题是否出在服务器上。如果您在 EF 之外连接它时遇到问题,您可以将 EF 排除在外。

  2. 如果可以,请省略连接字符串或对 SQL 数据库的任何提及,看看 EF 是否会为您生成 LocalDB。 I believe this is the default behaviour of EF.如果这有效,我认为这也表明您的 SQL 服务器有问题给您带来了麻烦。

同样,我对此很陌生,所以我只是想建议我尝试用我有限的知识解决问题的方法。希望对您有所帮助!

关于database - Entity Framework 代码首先导致数据库访问异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33377403/

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