c# – 如何在Azure Function v2(核心)中静态使用ConfigurationBuilder?

将Azure功能从v1移植到v2时,配置管理器用于读取local.settings.json的方式发生了变化.

以前,我使用以下代码函数实例之间启用redis连接池:

public static class Redis
{
    /// <summary>
    /// Initializes the REdis connection.
    /// </summary>
    private static readonly Lazy<ConnectionMultiplexer> LazyConnection = new Lazy<ConnectionMultiplexer>(() =>
    {
        return ConnectionMultiplexer.Connect(ConfigurationManager.AppSettings["CacheConnection"]);
        });

    public static IDatabase Database => LazyConnection.Value.GetDatabase();
}

但是在v2中,ConfigurationManager不再可用,我们必须使用以下内容

new ConfigurationBuilder()
        .SetBasePath(context.FunctionAppDirectory)
        .AddJsonFile("local.settings.json", optional: true, reloadOnChange: true)
        .AddEnvironmentvariables()
        .Build();

但是,因为它需要仅在函数运行时期间可用的上下文,所以我们无法创建跨所有函数共享的静态类.是否可以在Azure Functions v2中静态读取app.settings.json?

解决方法:

我们可以用

var config = new ConfigurationBuilder()
    .AddEnvironmentvariables()
    .Build();
string cacheConnection = config["CacheConnection"];

或者干脆

Environment.GetEnvironmentvariable("CacheConnection");

local.settings.json(还有Azure上的应用程序设置)中的值会在函数主机启动时自动注入到Environmentvariables中.

相关文章

Microsoft云包括了Azure、PowerPlatform、Microsoft365、Git...
《WindowsAzurePlatform系列文章目录》 我们在使用AzureAPI...
微软免费使用一年的Azure虚拟机,默认提供了一个64G的磁盘,...
上篇请访问这里做一个能对标阿里云的前端APM工具(上)样本多...
一年一度的MicrosoftBuild终于来了,带来了非常非常多的新技...