作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我有一组服务,我想使用流畅的注册技术在 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/
我是一名优秀的程序员,十分优秀!