gpt4 book ai didi

asp.net - 数据库上下文在 base 的数据表中没有看到任何记录

转载 作者:行者123 更新时间:2023-11-29 12:26:37 26 4
gpt4 key购买 nike

我正在创建一个使用 PostgreSql 数据库的 ASP.NET MVC 应用程序。模型类在不同的类库中。为了访问数据库,我在类库中使用 Entity Framework + Npgsql.Entityframework。我还向主项目添加了相同的链接。配置设置在主项目的 web.config 中:

<configSections>
<section name="entityFramework"
type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
requirePermission="false" />
</configSections>
<entityFramework>
<defaultConnectionFactory type="Npgsql.NpgsqlServices, Npgsql.EntityFramework" />
<providers>
<provider invariantName="Npgsql"
type="Npgsql.NpgsqlServices, Npgsql.EntityFramework" />
</providers>
</entityFramework>
<connectionStrings>
<add name="NpgsqlContext"
providerName="Npgsql"
connectionString="Server=127.0.0.1;User Id=BaseId;Password=BasePass;Port=5432;Database=Base;" />
</connectionStrings>
<system.data>
<DbProviderFactories>
<add name="Npgsql Data Provider"
invariant="Npgsql"
support="FF"
description=".Net Framework Data Provider for Postgresql"
type="Npgsql.NpgsqlFactory, Npgsql" />
</DbProviderFactories>
</system.data>

我的数据库上下文有正确的连接字符串(PORT=5432;KRBSRVNAME=name;TIMEOUT=15;POOLING=True;MINPOOLSIZE=1;MAXPOOLSIZE=20;COMMANDTIMEOUT=20;COMPATIBLE=2.2.7.0;HOST=127.0.0.1;用户 ID=BasePass;密码=BasePass;DATABASE=基地),但没有在 base 的数据表中看到任何记录。同时记录在那里。我在 pgAdmin 中创建了数据库和一些表。要访问表,我使用类:

public class NpgsqlContext : DbContext
{
public NpgsqlContext(): base(nameOrConnectionString: "NpgsqlContext")
{
}

public DbSet<BaseArticle> BaseArticles { get; set; }
}

[Table("ARTICLE", Schema = "public")]
public class BaseArticle
{
[Key]
[Column("ID")]
public int Id { get; set; }

[Column("DATETIME")]
public DateTime DateTime { get; set; }

[Column("TITLE")]
public string Title { get; set; }

[Column("BODY")]
public string Body { get; set; }
}

NpgsqlContext 对象正常创建,但 DbSet BaseArticle 的计数为 0。

哪里会出错?

而且 - 在 ASP.NET MVC 中通常不可能实现应用程序各部分之间的松散耦合?

最佳答案

为了解决我的问题,我需要在上下文的构造函数中打开到 base 的连接:

this.Database.Connection.Open();

关于asp.net - 数据库上下文在 base 的数据表中没有看到任何记录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32813216/

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