报错 UnableResolveDependencyException: Unable to resolve dependency System.Collections.Generic.IEnumerable`1
看起来并不会尝试去根据元素类型解析服务集,而官方是支持注入服务集合的。
不知是否有支持计划?
服务注册:
public interface IFake
{
void Echo();
}
[Service]
public class Foo : IFake
{
public void Echo()
{
Console.WriteLine("this is Foo");
}
}
[Service]
public class Bar : IFake
{
public void Echo()
{
Console.WriteLine("this is Bar");
}
}
报错 UnableResolveDependencyException: Unable to resolve dependency System.Collections.Generic.IEnumerable`1 看起来并不会尝试去根据元素类型解析服务集,而官方是支持注入服务集合的。 不知是否有支持计划?
服务注册: