Caliburn Micro SimpleContainer,IoC,服务注册

时间:2014-04-28 19:42:13

标签: c# windows-phone-8 caliburn.micro

在我的Windows Phone 8应用程序中,我有多个实现相同界面的服务。根据用户选择,我需要使用其中一种服务(实现)。

通常我在bootstrapper中配置我的服务,如下所示:

 protected override void Configure()
{
    ...
    container.PerRequest<ICarService, CompanyACarService>();
    //container.PerRequest<ICarService, CompanyBCarService>();
    ...
}

我应该如何向bootstrapper添加功能,以便它根据某些逻辑选择CompanyACarService或CompanyBCarService实现?

1 个答案:

答案 0 :(得分:1)

您可以使用

container.RegisterPerRequest(interface, key, implementation);

注册具有不同密钥(标识符)的接口的多个实现。然后,您可以使用服务定位器(反)模式来获取实例

var instance = IoC.Get<interface>(key);

我认为使用构造函数注入

可以获得相同的结果