When should I use property injection?
如果依赖项是真正可选的,当您有本地默认值,或者对象图包含循环依赖项时,您应该使用属性注入.
但是,Property Injection导致@L_403_0@并且在编写业务线应用程序时,您的依赖项永远不应该是可选的:您应该应用Null Object pattern.
你也不应该使用Local Default,因为这会使测试复杂化,隐藏依赖关系,并且很容易忘记配置依赖项.
对象图也不应具有循环依赖性.这是您的应用程序设计中的indication of a problem.
Should I use by default constructor injection if instance creation in fully controlled?
是.构造函数注入是最好的方法.它使得很容易看出一个类具有哪些依赖关系,使得可以实现所需的依赖关系,并防止时间耦合.
Am I right that using a constructor injection I write container-agnostic code?
这是对的.构造函数注入允许您延迟决定使用哪个DI库,以及whether at all you use a DI library.
有关上述内容以及更多内容的更详细解释,请阅读Mark Seemann(以及我自己)的书籍Dependency Injection in .NET,这是了解DI及其基本模式和原则的首选指南.