gpt4 book ai didi

c# - 为什么我的 Windsor Implicit Delegate Factory Registration 不起作用?

转载 作者:行者123 更新时间:2023-12-05 01:48:35 30 4
gpt4 key购买 nike

我正在努力让它发挥作用 - 但我一定遗漏了一些东西 http://docs.castleproject.org/Windsor.Typed-Factory-Facility-delegate-based-factories.ashx#Registering_factories_implicitly_1

有人能发现吗?

[TestClass]
public class UnitTest1 {

[TestMethod]
public void DelegateFactoryTest() {
var container = new WindsorContainer();
container.Register(
Component.For<AComponent>().LifeStyle.Transient,
Component.For<IAService>().ImplementedBy<AService>().LifeStyle.Transient
);

var comp = container.Resolve<AComponent>();
Assert.IsNotNull(comp);
Assert.IsNotNull(comp.GetService());
}

class AComponent {
readonly Func<IAService> _serviceDelegate;

public AComponent(Func<IAService> serviceDelegate) {
_serviceDelegate = serviceDelegate;
}

public IAService GetService() {
return _serviceDelegate();
}
}

interface IAService { }

class AService : IAService { }
}

得到如下错误

CaSTLe.MicroKernel.Handlers.HandlerException:无法创建组件“Sandbox.Windsor.Tests.UnitTest1+AComponent”,因为它具有需要满足的依赖项。'Sandbox.Windsor.Tests.UnitTest1+AComponent' 正在等待以下依赖项:- 服务 'System.Func'1[[Sandbox.Windsor.Tests.UnitTest1+IAService, Sandbox.Windsor.Tests, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]' 未注册。

如果我明确注册,一切都很好

container.Register(
Component.For<AComponent>().LifeStyle.Transient,
Component.For<IAService>().ImplementedBy<AService>().LifeStyle.Transient,
Component.For<Func<IAService>>().Instance(()=>new AService()).LifeStyle.Transient
);

最佳答案

您缺少 TypedFactoryFacility

container.AddFacility<TypedFactoryFacility>()

关于c# - 为什么我的 Windsor Implicit Delegate Factory Registration 不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10197213/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com