gpt4 book ai didi

c# - CaSTLe Windsor Fluent 配置 : Is it possible to make a specific lifestyle for a given service without using the concrete implementation?

转载 作者:太空狗 更新时间:2023-10-30 01:24:46 25 4
gpt4 key购买 nike

我有一组服务,我想使用流畅的注册技术在 CaSTLe Windsor(版本 3.0 RC1)中注册。

我希望除了一个特定的人之外的所有人都使用短暂的生活方式,而我想成为单例,所以我这样做:

container.Register(AllTypes
.FromThisAssembly()
.InSameNamespaceAs<IMyService>()
.WithServiceDefaultInterfaces()
.ConfigureIf(s => s.Implementation == typeof(MyService),
s => s.LifestyleSingleton(),
s => s.LifestyleTransient()));

我遇到的问题是我在 ConfigureIf 的第一个参数中使用了 typeof(MyService),但如果我可以使用 IMyService确定它是否是单例(即不管实现是什么,它应该总是单例)。这有可能吗?

最佳答案

非常感谢 oleksii,他建议查看这个问题:How to determine if a type implements a specific generic interface type在对该问题的评论中,答案是执行以下操作:

container.Register(AllTypes
.FromThisAssembly()
.InSameNamespaceAs<IMyService>()
.WithServiceDefaultInterfaces()
.ConfigureIf(s => typeof(IMyService).IsAssignableFrom(s.Implementation),
s => s.LifestyleSingleton(),
s => s.LifestyleTransient()));

关于c# - CaSTLe Windsor Fluent 配置 : Is it possible to make a specific lifestyle for a given service without using the concrete implementation?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8507546/

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