考虑以下结构作为Autofac 3.0.0的注册主体:
class Something
{
public int Result { get; set; }
}
class SomethingGood : Something
{
private int _good;
public int GoodResult {
get { return _good + Result; }
set { _good = value; }
}
}
interface IDo<in T> where T : Something
{
int Calculate( T input );
}
class MakeSomethingGood : IDo<SomethingGood>
{
public int Calculate( SomethingGood input ) {
return input.GoodResult;
}
}
class ControlSomething
{
private readonly IDo<Something> _doer;
public ControlSomething( IDo<Something> doer ) {
_doer = doer;
}
public void Show() {
Console.WriteLine( _doer.Calculate( new Something { Result = 5 } ) );
}
}
我正在尝试注册具体类型MakeSomethingGood,然后通过逆变接口解决它。
var builder = new ContainerBuilder();
builder.Register( c => new MakeSomethingGood() ).As<IDo<SomethingGood>>();
builder.Register( c => new ControlSomething( c.Resolve<IDo<Something>>() ) ).AsSelf();
var container = builder.Build();
var controller = container.Resolve<ControlSomething>();
并且CCD_ 1失败是因为没有找到用于CCD_ 2 的组件
我做错了什么?
感谢
注册IDo<SomethingGood>
并尝试解析IDo<Something>
。这是怎么回事?为了实现这一点,IDo<T>
应该被定义为协变:IDo<out T>
。
由于IDo<in T>
被定义为反变量(使用in
关键字),因此不能简单地将IDo<SomethingGood>
分配给Resolve
0。这不会在C#中编译:
IDo<SomethingGood> good = new MakeSomethingGood();
// Won't compile
IDo<Something> some = good;
这就是为什么即使使用ContravariantRegistrationSource
,Autofac也无法解决这个问题。