1

我想使用serviceKey来区分服务的不同实现。

代码说明:有一个ICat接口,用来“说”一只猫的“喵”字。“喵”这个词来自 ISoundProducer 的实现(它被注入到 ICat 的实现中)。

我使用相同的 serviceKey = "x" 注册了两个服务(ICat 和 ISoundProducer)。之后,我尝试解析 ICat 实例,但失败了。

这是演示代码:

using DryIoc;
using System;

class Program
{
    static void Main(string[] args)
    {
        Container ioc = new Container();
        ioc.Register<ISoundProducer, GoodCatSoundProducer>(serviceKey: "x");
        ioc.Register<ICat, GoodCat>(serviceKey: "x");

        var c1 = ioc.Resolve<ICat>("x");
        c1.Say();

        Console.ReadKey();
    }
}

public interface ISoundProducer
{
    string ProduceSound();
}

public class GoodCatSoundProducer : ISoundProducer
{
    string ISoundProducer.ProduceSound() => "Meow";
}

public interface ICat
{
    void Say();
}

public class GoodCat : ICat
{
    private ISoundProducer _soundProducer;
    public GoodCat(ISoundProducer soundProducer) => this._soundProducer = soundProducer;
    void ICat.Say() => Console.WriteLine(_soundProducer.ProduceSound());
}

这给了我一个例外:

无法将 ISoundProducer 解析为 GoodCat 中的参数“soundProducer”:ICat {ServiceKey="x"} 来自具有正常和动态注册的容器:x,{ID=28,ImplType=GoodCatSoundProducer}}

我究竟做错了什么?如何使用另一个注入的服务解析服务,而它们都具有相同的 serviceKey?

4

1 回答 1

3

指定依赖键:

ioc.Register<ICat, GoodCat>(serviceKey: "x",
  made: Made.Of(Parameters.Of.Type<ISoundProducer>(serviceKey: "x")));
ioc.Register<ISoundProducer, GoodCatSoundProducer>(serviceKey: "x"); 
于 2017-11-02T06:09:47.397 回答