这一定是以前问过的,很抱歉,但是你怎么注册这个小地段
IThingProcessor : IProcessor<Thing>
IOtherThingProcessor : IProcessor<OtherThing>
鉴于我有
ThingProcessor : IThingProcessor
OtherThingProcessor : IOtherThingProcessor
我有这个代码要注册
container.Register(
Classes.FromThisAssembly()
.BasedOn(typeof(IProcessor<>))
.WithService.Base()
但由于某种原因,它不会注册它们,有什么想法吗?我根据 Krzysztof 的反馈对此进行了更改,但没有发生。