DataContext 在使用 PostgreSql 时连接到 \\SQLEXPRESS
DataContext connects to \\SQLEXPRESS while using PostgreSql
我开发了一个使用 PostgreSql 数据库的 ASP.NET MVC 应用程序。模型 classes 在不同的 class 库中。为了访问数据库,我使用 Entity Framework + Npgsql.Entityframework。
作为 app.config
的设置示例,我使用了本教程 http://lvasquez.github.io/2014/11/24/EntityFramework-PostgreSql/。
我的app.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>
我从基本项目中删除了指向 Entity Framework 的所有链接,它是 web.config
。
同时,当我尝试连接到数据库时,上下文是通过连接字符串连接的
Data Source=.\SQLEXPRESS;Initial Catalog=NpgsqlContext;Integrated Security=True;MultipleActiveResultSets=True
也许有人遇到过类似的问题?
如果您 运行 在网站中设置代码,则此配置需要位于该网站的 web.config 中。您不能单独 运行 一个 class 库 (dll)。它需要一个主机应用程序。 class 库项目中的 app.config 文件从未使用过。如果您 运行 在测试项目或控制台项目中使用代码,则此配置需要位于该项目的 app.config 中。
我开发了一个使用 PostgreSql 数据库的 ASP.NET MVC 应用程序。模型 classes 在不同的 class 库中。为了访问数据库,我使用 Entity Framework + Npgsql.Entityframework。
作为 app.config
的设置示例,我使用了本教程 http://lvasquez.github.io/2014/11/24/EntityFramework-PostgreSql/。
我的app.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>
我从基本项目中删除了指向 Entity Framework 的所有链接,它是 web.config
。
同时,当我尝试连接到数据库时,上下文是通过连接字符串连接的
Data Source=.\SQLEXPRESS;Initial Catalog=NpgsqlContext;Integrated Security=True;MultipleActiveResultSets=True
也许有人遇到过类似的问题?
如果您 运行 在网站中设置代码,则此配置需要位于该网站的 web.config 中。您不能单独 运行 一个 class 库 (dll)。它需要一个主机应用程序。 class 库项目中的 app.config 文件从未使用过。如果您 运行 在测试项目或控制台项目中使用代码,则此配置需要位于该项目的 app.config 中。