私はUnityをコンテナとして使用しています。問題を解決するのに役立つかどうかは疑問です。私は2つのサービス、Service1とService2を持っています。彼らはどちらも別のオブジェクトに依存しており、IFooと呼ぶことができます。私は各サービスが独自のIFooのインスタンスを取得したいと思っていますが、同時に私は他の人にはしたくありません。基本的にはシングルトンでなければなりませんが、スコープがあります。私はこれを達成するために子コンテナの組み合わせを使用することを考えましたが、私が望むように動作しません。アイデアは、IFooにはService1とService2に固有の接続の詳細と他のいくつかのコンテナで解決されたオブジェクトが含まれているということです。以下は、うまくいけばそれを明確にするコードです。コンテナ階層
ViewControllerを解決するコードは、parentContainerについてしか知りません。
var parentContainer = new UnityContainer();
parentContainer.RegisterType<IParentScope, ParentScoped>(
new ContainerControlledLifetimeManager());
var childContainer1 = parentContainer.CreateChildContainer();
childContainer1.RegisterInstance<IFoo>(new Foo("Unique to Child Container 1"),
new ContainerControlledLifetimeManager());
childContainer1.RegisterType<IService1, Service1>(
new ContainerControlledLifetimeManager());
var childContainer2 = parentContainer.CreateChildContainer();
childContainer2.RegisterInstance<IFoo>(new Foo("Unique to Child Container 2"),
new ContainerControlledLifetimeManager());
childContainer2.RegisterType<IService2, Service2>(
new ContainerControlledLifetimeManager());
var viewController = parentContainer.Resolve<ViewController>();
public class ViewController
{
public ViewController(IParentScope parentScope, IService1 service1, IService2 service2)
{
ParentScope = parentScope;
Service1 = service1;
Service2 = service2;
}
public IParentScope ParentScope { get; set; }
public IService1 Service1 { get; set; }
public IService2 Service2 { get; set; }
}
特定のユースケースを説明したいと思うかもしれません。これは、私の見解ではあなたのアプローチに欠陥があるためです。あなたはあなたの質問を更新し、あなたが何をしているのかについての詳細を提供することができますか(実際のクラス名とあなたのやっていることを示すコード)? – Steven
Service1と2がIFooのインスタンスを共有したくないのですが、他のサービスはどうですか?彼らはService1またはService2に与えられたインスタンスを共有しようとしていますか?なぜそれがシングルトンである必要がありますか? –