AutoMapper.Extensions.Microsoft.DependencyInjection 12.0.0

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package AutoMapper.Extensions.Microsoft.DependencyInjection --version 12.0.0
NuGet\Install-Package AutoMapper.Extensions.Microsoft.DependencyInjection -Version 12.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="12.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add AutoMapper.Extensions.Microsoft.DependencyInjection --version 12.0.0
#r "nuget: AutoMapper.Extensions.Microsoft.DependencyInjection, 12.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install AutoMapper.Extensions.Microsoft.DependencyInjection as a Cake Addin
#addin nuget:?package=AutoMapper.Extensions.Microsoft.DependencyInjection&version=12.0.0

// Install AutoMapper.Extensions.Microsoft.DependencyInjection as a Cake Tool
#tool nuget:?package=AutoMapper.Extensions.Microsoft.DependencyInjection&version=12.0.0

AutoMapper extensions for Microsoft.Extensions.DependencyInjection

CI NuGet MyGet (dev)

Scans assemblies and:

  1. adds profiles to mapping configuration
  2. adds value resolvers, member value resolvers, type converters to the container.

To use, with an IServiceCollection instance and one or more assemblies:

services.AddAutoMapper(assembly1, assembly2 /*, ...*/);

or marker types:

services.AddAutoMapper(type1, type2 /*, ...*/);

This registers AutoMapper:

  • As a singleton for the MapperConfiguration
  • As a transient instance for IMapper
  • ITypeConverter instances as transient
  • IValueConverter instances as transient
  • IValueResolver instances as transient
  • IMemberValueResolver instances as transient
  • IMappingAction instances as transient

Mapping configuration is static as it is the root object that can create an IMapper.

Mapper instances are registered as transient. You can configure this with the serviceLifetime parameter. Be careful changing this, as Mapper takes a dependency on a factory method to instantiate the other extensions.

Mapper.Map usage

To map at runtime, add a dependency on IMapper:

public class EmployeesController {
	private readonly IMapper _mapper;

	public EmployeesController(IMapper mapper)
		=> _mapper = mapper;

	// use _mapper.Map to map
}

ProjectTo usage

Starting with 8.0 you can use IMapper.ProjectTo. The old ProjectTo is an extension method and does not have dependency injection available. Pass an IConfigurationProvider instance directly:

var orders = await dbContext.Orders
                       .ProjectTo<OrderDto>(_configurationProvider)
					   .ToListAsync();

Or you can use an IMapper instance:

var orders = await dbContext.Orders
                       .ProjectTo<OrderDto>(_mapper.ConfigurationProvider)
					   .ToListAsync();
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (959)

Showing the top 5 NuGet packages that depend on AutoMapper.Extensions.Microsoft.DependencyInjection:

Package Downloads
Omnia.Fx.NetCore

Package Description

NET6CustomLibrary

open source custom dotnet extension library

Elsa.Core

Elsa is a set of workflow libraries and tools that enable lean and mean workflowing capabilities in any .NET Core application. This package contains the core of Elsa. Tip: reference the `Elsa` package instead of this one.

Omnia.Fx.NetCore.Runtime

Package Description

VirtoCommerce.ExperienceApiModule.Core The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Experiene API functionality

GitHub repositories (208)

Showing the top 5 popular GitHub repositories that depend on AutoMapper.Extensions.Microsoft.DependencyInjection:

Repository Stars
BeyondDimension/SteamTools
🛠「Watt Toolkit」是一个开源跨平台的多功能 Steam 工具箱。
jasontaylordev/CleanArchitecture
Clean Architecture Solution Template for ASP.NET Core
bitwarden/server
The core infrastructure backend (API, database, Docker, etc).
dotnet-architecture/eShopOnWeb
Sample ASP.NET Core 8.0 reference application, powered by Microsoft, demonstrating a layered application architecture with monolithic deployment model. Download the eBook PDF from docs folder.
nopSolutions/nopCommerce
ASP.NET Core eCommerce software. nopCommerce is a free and open-source shopping cart.
Version Downloads Last updated
12.0.1 27,419,082 4/9/2023
12.0.0 27,711,645 9/30/2022
11.0.0 36,898,814 1/5/2022
8.1.1 48,295,917 2/5/2021
8.1.0 12,804,257 10/14/2020
8.0.1 11,184,352 7/16/2020
8.0.0 733,818 7/9/2020
7.0.0 35,385,928 8/12/2019
6.1.1 4,726,484 6/4/2019
6.1.0 3,332,598 4/29/2019
6.0.0 10,584,248 11/18/2018
5.0.1 5,907,605 7/20/2018
4.0.1 5,150,102 6/18/2018
3.2.0 3,910,210 11/16/2017
3.1.0 252,911 10/26/2017
3.0.1 509,462 8/19/2017
2.0.1 955,398 3/30/2017
2.0.0 36,039 3/17/2017
1.2.0 188,780 12/29/2016
1.1.2 92,000 9/2/2016
1.1.0 131,587 8/11/2016
1.0.1-alpha 12,034 7/20/2016
1.0.0-alpha 2,585 7/20/2016