使用AutoFac在ASP.NET Web API上实现依赖注入
程序员文章站
2022-06-27 19:40:06
在ASP.NET Web API里使用Autofac 通过NuGet安装Autofac.WebApi。(Nuget会安装依赖的Autofac.dll)。 PM > Install-Package Autofac.WebApi 引用如下命名空间: using Autofac; using Autofa ......
在ASP.NET Web API里使用Autofac
通过NuGet安装Autofac.WebApi。(Nuget会安装依赖的Autofac.dll)。
PM > Install-Package Autofac.WebApi
引用如下命名空间:
using Autofac;
using Autofac.Integration.WebApi;
代码配置Autofac 可参看http://efmvc.codeplex.com/ :一个样例Web程序,用来展示ASP.NET MVC、EF Code First以及架构实践。
相关资源:Dependency Injection with ASP.NET Web API and Autofac
http://www.codemonkeez.com/2013/04/aspnet-web-api-autofac-self-hosting.html
推荐阅读
-
ASP.NET Core依赖注入解读及使用Autofac替代实现
-
ASP.NET Core Web 应用程序系列(二)- 在ASP.NET Core中使用Autofac替换自带DI进行批量依赖注入(MVC当中应用)
-
使用AutoFac在ASP.NET Web API上实现依赖注入
-
在ASP.Net Web Forms中使用依赖注入的步骤
-
ASP.NET Core 2.0使用Autofac实现IOC依赖注入竟然能如此的优雅简便
-
ASP.NET Core Web 应用程序系列(三)- 在ASP.NET Core中使用Autofac替换自带DI进行构造函数和属性的批量依赖注入(MVC当中应用)
-
ASP.NET Core Web 应用程序系列(二)- 在ASP.NET Core中使用Autofac替换自带DI进行批量依赖注入(MVC当中应用)
-
ASP.NET Core依赖注入解读及使用Autofac替代实现
-
使用AutoFac在ASP.NET Web API上实现依赖注入
-
在ASP.Net Web Forms中使用依赖注入的步骤