gpt4 book ai didi

json - 为 appsettings.json 引用单独的连接字符串文件?

转载 作者:行者123 更新时间:2023-12-04 12:44:53 27 4
gpt4 key购买 nike

在我的 .net 框架项目中,我喜欢在我的 app.config 中包含以下内容

 <connectionStrings configSource="connections.config" />

connections.config 包含类似的东西

 <connectionStrings>

<add name="ApplicationDatabase" providerName="System.Data.SqlClient" connectionString="Server=.\SQLEXPRESS;Database=mydatabase;User Id=myuser; PWD=mypassword;" />

</connectionStrings>

然后我不将 connections.config 检查到源代码中。

我想对 .NET Core 使用类似的技巧,但它使用了 appsettings.json

通过

     services.AddDbContext<ApiDbContext>(options =>
options.UseSqlServer(
Configuration.GetConnectionString("MyDatabase")));

我该如何继续?

最佳答案

您可以创建一个单独的 JSON 文件(或 XML,或任何配置提供程序)并在应用程序启动时加载它:

WebHost.CreateDefaultBuilder(args)
.ConfigureAppConfiguration(builder =>
{
builder.AddJsonFile("connectionstrings.json", optional: true);
})

看看the docs对于所有受支持的配置提供程序。

关于json - 为 appsettings.json 引用单独的连接字符串文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52249974/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com