数据库连接错误应用程序将被关闭

时间:2018-11-08 21:27:43

标签: c# sql-server entity-framework

我想调试时数据库出现问题,我在SQL Server中收到错误数据库,我已将其添加到项目中,但是app.config仍然存在问题,它具有App.debug.config和app.relase。配置,我无法打开它,显示给我

  

项目目录中不存在'App.Debug.config'项目。   可能被移动,重命名或删除”。

我必须像这样https://msdn.microsoft.com/it-it/library/dd465326(VS.100).aspx进行配置转换
该项目具有sqldb /,并且正在使用网络界面/ EntityFramework,这是我的连接字符串,希望有人可以帮助我解决此问题'谢谢!

      <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>
    <connectionStrings>
      <!-- database connection string -->
      <add name="dentnedEntities" connectionString="Data Source=DESKTOP-Q8526KR\SQLEXPRESS;Initial Catalog=mydb;Integrated Security=SSPI;" providerName="System.Data.EntityClient"/>
    </connectionStrings>

0 个答案:

没有答案