ASPNET CORE 的 DI 依赖注入 及 AuotoFac 的引入

2021-04-22 19:28

阅读:639

标签:round   host   pac   ram   line   https   ltm   VID   plain   

学习有关Aspnet Core 的DI及IOC等,参考:

1、全面理解 ASP.NET Core 依赖注入    https://blog.csdn.net/hiliqi/article/details/80611209

     提及 AuotoFac 的引入Aspnet Core的方式: 把Startup类里面的 ConfigureService的 返回值从 void改为 IServiceProvider即可。

     public IServiceProvider ConfigureServices(

  IServiceCollection services){
    services.AddMvc();
    // Add other framework services
 
    // Add Autofac
    var containerBuilder = new ContainerBuilder();
    containerBuilder.RegisterModule();
    containerBuilder.Populate(services);
    var container = containerBuilder.Build();
    return new AutofacServiceProvider(container);
   }
2、ASP.NET Core 3.0+ and Generic Hosting   官方描述,ASP.NET Core 3.0+ 的集成方式有变化。
    https://autofaccn.readthedocs.io/zh/latest/integration/aspnetcore.html#asp-net-core-3-0-and-generic-hosting
 

ASPNET CORE 的 DI 依赖注入 及 AuotoFac 的引入

标签:round   host   pac   ram   line   https   ltm   VID   plain   

原文地址:https://www.cnblogs.com/hopesun/p/12242266.html


评论


亲,登录后才可以留言!