Autofac.WebApi2
6.1.1
Prefix Reserved
dotnet add package Autofac.WebApi2 --version 6.1.1
NuGet\Install-Package Autofac.WebApi2 -Version 6.1.1
<PackageReference Include="Autofac.WebApi2" Version="6.1.1" />
paket add Autofac.WebApi2 --version 6.1.1
#r "nuget: Autofac.WebApi2, 6.1.1"
// Install Autofac.WebApi2 as a Cake Addin #addin nuget:?package=Autofac.WebApi2&version=6.1.1 // Install Autofac.WebApi2 as a Cake Tool #tool nuget:?package=Autofac.WebApi2&version=6.1.1
Autofac.WebApi
ASP.NET Web API integration for Autofac.
Please file issues and pull requests for this package in this repository rather than in the Autofac core repo.
Quick Start
To get Autofac integrated with Web API you need to reference the Web API integration NuGet package, register your controllers, and set the dependency resolver. You can optionally enable other features as well.
protected void Application_Start()
{
var builder = new ContainerBuilder();
// Get your HttpConfiguration.
var config = GlobalConfiguration.Configuration;
// Register your Web API controllers.
builder.RegisterApiControllers(Assembly.GetExecutingAssembly());
// OPTIONAL: Register the Autofac filter provider.
builder.RegisterWebApiFilterProvider(config);
// OPTIONAL: Register the Autofac model binder provider.
builder.RegisterWebApiModelBinderProvider();
// Set the dependency resolver to be Autofac.
var container = builder.Build();
config.DependencyResolver = new AutofacWebApiDependencyResolver(container);
}
Check out the documentation for more usage details.
Get Help
Need help with Autofac? We have a documentation site as well as API documentation. We're ready to answer your questions on Stack Overflow or check out the discussion forum.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net472 is compatible. net48 was computed. net481 was computed. |
-
.NETFramework 4.7.2
- Autofac (>= 6.4.0)
- Microsoft.AspNet.WebApi.Core (>= 5.2.0 && < 6.0.0)
- Newtonsoft.Json (>= 13.0.1)
NuGet packages (83)
Showing the top 5 NuGet packages that depend on Autofac.WebApi2:
Package | Downloads |
---|---|
Autofac.WebApi2.Owin
ASP.NET Web API OWIN integration for Autofac. |
|
iRely.Common
iRely.Common |
|
BumperLane.Tenant.Api.Framework
Framework for BumperLane API sites |
|
Purplelight.Framework.Autofac.Integration.WebApi
Productivity enhancements to Autofac WebApi Integration |
|
TouchConvert.Tenant.Api.V1.Dtos
Data transfer objects for TouchConvert version one APIs. |
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on Autofac.WebApi2:
Repository | Stars |
---|---|
smartstore/SmartStoreNET
Open Source ASP.NET MVC Enterprise eCommerce Shopping Cart Solution
|
Version | Downloads | Last updated |
---|---|---|
6.1.1 | 1,596,518 | 8/2/2022 |
6.1.0 | 812,968 | 11/18/2021 |
6.0.1 | 1,597,199 | 12/1/2020 |
6.0.0 | 1,162,912 | 9/30/2020 |
5.0.0 | 3,391,925 | 1/30/2020 |
4.3.1 | 2,499,521 | 9/5/2019 |
4.3.0 | 251,162 | 8/15/2019 |
4.2.1 | 1,941,017 | 3/26/2019 |
4.2.0 | 3,390,984 | 6/21/2018 |
4.1.0 | 3,957,995 | 8/2/2017 |
4.0.1 | 4,382,389 | 10/24/2016 |
4.0.0 | 2,565,421 | 8/17/2016 |
4.0.0-rc3-225 | 3,888 | 8/3/2016 |
4.0.0-beta7-215 | 36,278 | 9/23/2015 |
3.4.0 | 4,626,071 | 8/17/2014 |
3.3.3 | 206,397 | 7/2/2014 |
3.3.0 | 77,307 | 5/9/2014 |
3.2.1 | 28,496 | 3/27/2014 |
3.2.0 | 58,729 | 1/28/2014 |
3.1.0 | 65,862 | 12/28/2013 |
3.0.0 | 55,756 | 10/24/2013 |
Release notes are at https://github.com/autofac/Autofac.WebApi/releases