我的连接字符串有什么问题(无法通过配置管理器访问它)?



我正在尝试连接到Azure SQL,但我得到错误The underlying provider failed on Open

我发现我把连接字符串在错误的app.config -移动到可执行项目的app.config,但仍然是相同的结果

当我检查ConfigurationManager.ConnectionStrings["AzureDatabase"]时,它返回null。当我尝试连接时,它只是使用默认的SQLExpress。

当我检查我的可执行应用程序的构建文件夹-有一个<app_name>.exe.config文件与"AzureDatabase"。我不知道从哪里搜索

这是我的DbContext类

[DbConfigurationType(typeof(AzureDbConfiguration))]
public class ProductDbContext : DbContext
{
    //Db sets
    static MyContext()
    {
        //I don't want to change database from code
        Database.SetInitializer<MyContext>(null);
    }
    public MyContext() : base("AzureDatabase") //this is my connectionstring
    {            
    }
    protected override void OnModelCreating(DbModelBuilder modelBuilder)
    {
        //some mappings
    }
}

这是AzureDbConfiguration

public class AzureDbConfiguration : DbConfiguration
{
    public AzureDbConfiguration()
    {
        SetExecutionStrategy("System.Data.SqlClient", () => new SqlAzureExecutionStrategy(2, TimeSpan.FromSeconds(10)));
    }
}

这是我的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="AzureDatabase" 
             connectionString="Server=tcp:xxx.database.windows.net,1433;Initial Catalog=xxx;Persist Security Info=False;User ID=xxxx;Password=xxxxx;MultipleActiveResultSets=False;Encrypt=True;TrustServerCertificate=False;Connection Timeout=30;" providerName="System.Data.SqlClient"/>
            </connectionStrings>
  <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>
    <startup> 
        <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
    </startup>
</configuration>

这里有什么问题吗?

事实证明,问题是我试图从类库(我试图创建一个集成测试)app.config工作

一个可能的解决方案是为Class库创建一个单独的设置文件。你可以在这个StackOverflow的帖子

中读到它

相关内容

  • 没有找到相关文章

最新更新