想象一下,我有以下内容:
public interface IocInterface1 { }
public interface IocInterface2 { }
public class IocImpl : IocInterface1, IocInterface2 { }
我想如果我尝试通过IoC获取上述类/接口的任何实例,我得到完全相同的实例,而不是每个类型一个单例。例如,下面的b1
和b2
应为真:
_container.RegisterSingle<IocInterface1, IocImpl>();
_container.RegisterSingle<IocInterface2, IocImpl>();
_container.RegisterSingle<IocImpl, IocImpl>();
var test1 = _container.GetInstance<IocInterface1>();
var test2 = _container.GetInstance<IocInterface2>();
var test3 = _container.GetInstance<IocImpl>();
bool b1 = test1 == test2;
bool b2 = test2 == test3;
这可能吗?
答案 0 :(得分:11)
如果要注册具有相同注册的多个类型,则需要为实现类型IocImpl
使用单一注册对象。
然后,您需要使用AddRegistration
为不同的服务添加此注册:IocInterface1
,IocInterface2
等:
var _container = new Container();
var registration =
Lifestyle.Singleton.CreateRegistration<IocImpl, IocImpl>(_container);
_container.AddRegistration(typeof(IocImpl), registration);
_container.AddRegistration(typeof(IocInterface1), registration);
_container.AddRegistration(typeof(IocInterface2), registration);
如文档中所述:Register multiple interfaces with the same implementation
或者,您也可以使用委托进行映射:
_container.RegisterSingle<IocImpl>();
_container.RegisterSingle<IocInterface1>(() => container.GetInstance<IocImpl>());
_container.RegisterSingle<IocInterface2>(() => container.GetInstance<IocImpl>());
在大多数情况下,这两个例子在功能上都是等同的,但前者是首选。