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

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

通過參數(shù)解決依賴關(guān)系 - 無需預(yù)先實(shí)例化服務(wù)?

通過參數(shù)解決依賴關(guān)系 - 無需預(yù)先實(shí)例化服務(wù)?

C#
繁花如伊 2023-07-09 09:52:31
簡化,我有這個(gè)簡單的代碼:? ? services.AddScoped<IFruit>(provider =>? ? ? ? {? ? ? ? ? ? var httpContext = provider.GetRequiredService<IHttpContextAccessor>().HttpContext;? ? ? ? ? ? if (httpContext.Request.QueryString.HasValue)? ? ? ? ? ? {? ? ? ? ? ? ? ? return new AppleService(...);? ? ? ? ? ? }? ? ? ? ? ? else return new OrangeService(...);? ? ? ? });問題是AppleService&OrangeSservice在構(gòu)造函數(shù)中有許多(且不同的)參數(shù)(其他 DI 參數(shù)),我認(rèn)為我在這里走錯(cuò)了方向。public class AppleService:IFruit{?public? AppleService (a,b,c,d,e....){}}public class OrangeService:IFruit{?public? OrnageService (o,i,u,y,....){}}另外,我不想預(yù)先實(shí)例化這兩個(gè)服務(wù)只是為了決定使用哪個(gè)。我希望實(shí)例化僅適用于我將要使用的服務(wù)。(根據(jù)請求參數(shù))正如您所看到的,即使他只需要一個(gè)服務(wù),他也會(huì)注入并實(shí)例化這兩個(gè)服務(wù)。(在我的場景中,我需要范圍實(shí)例化)問題:如何僅實(shí)例化每個(gè)請求參數(shù)所需的服務(wù)?
查看完整描述

1 回答

?
拉風(fēng)的咖菲貓

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

如果您將服務(wù)注冊到 DI 容器中,然后使用 來解決它們,則可以使用大量參數(shù)來解決問題ServiceProvider。


這樣您就不需要手動(dòng)實(shí)例化服務(wù)。


services.AddScoped<AppleService>();

services.AddScoped<OrangeService>();

services.AddScoped<IFruit>(provider =>

{

    var httpContext = provider.GetRequiredService<IHttpContextAccessor>().HttpContext;


    if (httpContext.Request.QueryString.HasValue)

    {

        return provider.GetRequiredService<AppleService>();

    }


    return provider.GetRequiredService<OrangeService>();

});


查看完整回答
反對 回復(fù) 2023-07-09
  • 1 回答
  • 0 關(guān)注
  • 139 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號

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