本文介绍了在注入IEnumerable T时是否保证依赖关系的顺序?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在实现IMyService的容器服务中注册.
I register in container services implementing IMyService.
我对他们的订购有任何保证吗
Do I have any guarantees about their order in
container.Resolve<IEnumerable<IMyService>>
?
推荐答案
否,此处不保证订购.我们已经考虑了启用它的扩展程序,但现在它需要手动处理.
No, there's no ordering guaranteed here. We've considered extensions to enable it but for now it's something to handle manually.
这篇关于在注入IEnumerable T时是否保证依赖关系的顺序?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!