簡化,我有這個(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>();
});
- 1 回答
- 0 關(guān)注
- 139 瀏覽
添加回答
舉報(bào)
0/150
提交
取消