在应用程序配置文件中找不到名为“MyAppDbContext”的连接字符串

时间:2015-04-26 10:33:07

标签: c# .net asp.net-mvc

在我的DAL项目中,我有从ui使用的存储库。我有点重构项目,现在从存储库收集数据我收到错误

  

“在。中找不到名为'MyAppDbContext'的连接字符串   应用程序配置文件。“

我在同一项目(DAL)上的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="MyAppDbContext" connectionString="Data Source=.\SQLEXPRESS;Initial Catalog=MyApp.DAL.MyAppDbContext;Integrated Security=True;AttachDBFilename=MyApp.DAL.MyAppDbContext.mdf" providerName="System.Data.SqlClient" />               
  </connectionStrings>
  <entityFramework>
    <defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" />
    <providers>
      <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
    </providers>
  </entityFramework>
</configuration>

我实际上有两个问题:

  • 为什么我收到此错误消息:“在应用程序配置文件中找不到名为'MyAppDbContext'的连接字符串。”
  • 如何在conn中设置路径。从App_Data目录中使用db的字符串(在我将其移动到那里之后)

1 个答案:

答案 0 :(得分:1)

尝试将连接字符串添加到使用项目的配置文件中,而不是DAL项目。