私は親クラスの動物クラスと2つの子クラスを持っています。私は依存性注入のために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
これはこれを行うための書き込み方法ですか? –