第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

多次注冊(cè)相同的接口 - Autofac

多次注冊(cè)相同的接口 - Autofac

C#
慕田峪4524236 2022-12-31 10:53:13
我正在嘗試注冊(cè)一個(gè)具有不同配置的接口,如下所示:private static ContainerBuilder RegisterAzureStorage(this ContainerBuilder containerBuilder, IAzureStorageOptions azureStorageOptions)    {        containerBuilder.Register(c =>                new AzureStorageKeyValuePersistenceService(                    new AzureStorageKeyValuePersistenceConfig(                        azureStorageOptions.DctAzureBlobConnectionString,                        azureStorageOptions.DctAzureBlobContainerName)))            .As<IStreamableKeyValuePersistenceService>()            .Keyed<IStreamableKeyValuePersistenceService>(PersistenceStorageKeys.DctAzureStorage)            .SingleInstance();        containerBuilder.Register(c =>                new AzureStorageKeyValuePersistenceService(                    new AzureStorageKeyValuePersistenceConfig(                        azureStorageOptions.NcsAzureBlobConnectionString,                        azureStorageOptions.NcsAzureBlobContainerName)))            .As<IStreamableKeyValuePersistenceService>()            .Keyed<IStreamableKeyValuePersistenceService>(PersistenceStorageKeys.NcsAzureStorage)            .SingleInstance();        return containerBuilder;    }然后在我的構(gòu)造函數(shù)中:public ReportingController(        [KeyFilter(PersistenceStorageKeys.DctAzureStorage)] IStreamableKeyValuePersistenceService dctStorage,        [KeyFilter(PersistenceStorageKeys.NcsAzureStorage)] IStreamableKeyValuePersistenceService ncsStorage)    {        _dctStorage = dctStorage;        _ncsStorage = ncsStorage;    }和用法:await _dctStorage.SaveAsync(........);await _ncsStorage.SaveAsync(........);但是,在執(zhí)行時(shí),它只會(huì)拾取最后一次注冊(cè)并將兩個(gè)對(duì)象保存到同一位置。我可以使用可枚舉方法讓它工作:public ReportingController(IEnumerable<IStreamableKeyValuePersistenceService> storage)    {        _storage = storage;    }然后對(duì)于可枚舉的每個(gè),但如果可能的話我更愿意使用鍵控方法。關(guān)于我所缺少的任何想法?
查看完整描述

1 回答

?
慕哥9229398

TA貢獻(xiàn)1877條經(jīng)驗(yàn) 獲得超6個(gè)贊

對(duì)于以后遇到這個(gè)問(wèn)題的人,我錯(cuò)過(guò)了注冊(cè),在這種情況下,執(zhí)行接口IReportingController需要注冊(cè)WithAttributeFiltering()如下:

containerBuilder.RegisterType<ReportingController>().As<IReportingController>().WithAttributeFiltering();


查看完整回答
反對(duì) 回復(fù) 2022-12-31
  • 1 回答
  • 0 關(guān)注
  • 125 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)