Autofac 属性注入

Posted voiceangel

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Autofac 属性注入相关的知识,希望对你有一定的参考价值。

只有对象是通过注入方式获取时,它的属性对象才可以被自动注入

 

例如:

 Class Mother{

   public Son _son {get;set}

}

 

public IServiceProvider ConfigureServices(IServiceCollection services){

ContainerBuilder builder = new ContainerBuilder();
builder.Populate(services);

builder.RegisterType<Son>();

builder.RegisterType<Mother>().PropertiesAutowired();

 

只有Mother通过注入方式获取(最初的注入只能是构造函数),_son 属性才能注入

 网上找到有用 builder.RegisterContoller()的,需要引入 Autofac Asp.net mvc5 ,但这个组件是asp.net 4.6的,不是core,所以,不能跨平台。

所以直接放弃了。

 

参考:

https://www.cnblogs.com/elvinle/p/6232365.html

 


 





以上是关于Autofac 属性注入的主要内容,如果未能解决你的问题,请参考以下文章

Autofac--注册组件--3属性和方法注入

带有 ValidationAttribute 的 Autofac 属性注入

Autofac - 属性注入

Autofac 属性注入

Autofac官方文档翻译--注册组件--3属性和方法注入

MVC autofac 属性注入