App.Config 中的实体框架连接字符串

Posted

技术标签:

【中文标题】App.Config 中的实体框架连接字符串【英文标题】:Entity Framework Connection String in App.Config 【发布时间】:2017-03-08 19:29:38 【问题描述】:

我对 Entity Framework 很陌生,如果这个问题是基本问题,我深表歉意。

我正在阅读 Code First 教科书,并创建了一个小型类库 (c#) 和一个控制台应用程序。教科书表明,当我运行它时,Entity Framework 将自动在 SQL Server 中构建数据库。它没有,我相信的原因是因为我有一个命名实例而不是默认实例 \SQLExpress。教科书指出我在使用默认实例时不需要连接字符串,但由于我没有使用默认实例,我猜我确实需要 App.Config 中的连接字符串。我尝试在此文件中放置一个标准连接字符串,但它不起作用。

这是我的 App.Config 文件的全部内容

<?xml version="1.0" encoding="utf-8"?>
<configuration>  
  <configSections>
    <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
    <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
  </configSections>
  <startup>
    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
  </startup>
  <entityFramework>
    <defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
      <parameters>
        <parameter value="mssqllocaldb" />
      </parameters>
    </defaultConnectionFactory>
    <providers>
      <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
    </providers>
  </entityFramework>
</configuration>

有人可以告诉我连接字符串的位置,或者告诉我我是否以错误的方式处理这个问题。

更新

感谢到目前为止收到的帮助,我的 App.Config 文件现在如下所示 -

<?xml version="1.0" encoding="utf-8"?>
<configuration>  
  <configSections>    
    <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
    <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
  </configSections>
  <connectionStrings>
    <add name="Model" connectionString="Server=OFFICE-ACER\SQLE;Database=BreakAway;Trusted_Connection=True;" providerName="System.Data.EntityClient" />
  </connectionStrings>
  <startup>
    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
  </startup>
  <entityFramework>
    <defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
      <parameters>
        <parameter value="mssqllocaldb" />
      </parameters>
    </defaultConnectionFactory>
    <providers>
      <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
    </providers>
  </entityFramework>
</configuration>

但是,什么都没有发生,即没有像以前那样创建数据库。

【问题讨论】:

您需要一个连接字符串。此外,配置中连接字符串的名称是您在创建实例时传递给 DBContext 的名称。 【参考方案1】:

在您的&lt;configSections&gt; 标签下,您可以放置​​此

<connectionStrings>
    <add name="myConn" connectionString="theConnString" providerName="System.Data.SqlClient" />
</connectionStrings>

然后将值替换为您需要的值

虽然在这种情况下它可能对您没有帮助,但为了避免将来不得不手动执行此操作,EntityFramework NuGet 包可以创造奇迹,您只需输入数据库的 url 和您的登录名 - 然后它会为您创建整个连接字符串在您的配置文件中,创建您的 edmx 并允许您导入您选择的数据

【讨论】:

这有效,但只有在我将“System.Data.EntityClient”更改为“System.Data.SqlClient”之后。在此之前,我收到错误“关键字不支持'服务器'”。不过感谢您的帮助 - 它让我到达了我需要去的地方。 没关系,抱歉没抓到那个【参考方案2】:

应该这样做:

<?xml version="1.0"?>
<configuration>
    <connectionStrings>
        <add name="putYourEntityName" connectionString="putYourConnectionStringHere" providerName="System.Data.EntityClient"/>
    </connectionStrings>
</configuration>

【讨论】:

这听起来很愚蠢;但实体名称是什么。这是我的上下文名称、数据库名称还是类库项目(或其他)的名称? @PJW 通常和你的DbContext类的名字一样【参考方案3】:
<configuration>
  <configSections>
      ... 
  </configSections>
  <connectionStrings>
    <add name="Name" connectionString="Data Source=servername; Initial Catalog = yourDbName ; Intgrated Security ="According to your requirement" providerName="System.Data.SqlClient" />

  </connectionStrings>

...

【讨论】:

【参考方案4】:

您需要知道的第一件事。如果您使用的是类库 (.dll)、在 .dll 中创建的实体 (.edmx) 文件,并且您正在从 MVC 应用程序(具有 web.config)调用此方法。 App.config 中的连接字符串永远不会被使用。

因此,您可以将连接字符串映射到 Web.Config(MVC 项目),甚至可以从 App.Config 中删除。它将始终使用 web.config。

【讨论】:

没有web.config文件 我没有看到任何暗示这是一个 MVC 应用程序。通常,您需要为使用此模型的 EDM 定义连接字符串。这意味着,如果您在应用程序中使用包含 EDM 的 DLL,则连接字符串需要放在应用程序的 app-config 中,而不是放在 DLL 的 app-config 中

以上是关于App.Config 中的实体框架连接字符串的主要内容,如果未能解决你的问题,请参考以下文章

我应该如何编辑实体框架连接字符串?

实体框架超时

c# - 在运行时更改 App.Config 后,实体框架 ConnectionString 不会更新

如何在连接字符串中设置实体框架 4 CommandTimeout?

在运行时加载 App.Config

实体类----app-config