我有父類動物和兩個孩子類狗和貓。我正在使用Autofac進行依賴注入。我想根據配置文件中指定的條件註冊Dog和Cat。註冊類型有條件地在Autofac
我想在我的模塊類下面的代碼。
If Dog mentioned in Config file then builder.RegisterType<Dog>().As<Animal>().PropertiesAutowired().SingleInstance(); If cat mentioned in Config file then builder.RegisterType<Cat>().As<Animal>().PropertiesAutowired().SingleInstance();
請建議的一樣。
出了什麼問題,你寫它的邏輯是什麼? – qujck
這是寫這種方式嗎? –