AutoMapper 14.0.0

Prefix Reserved
dotnet add package AutoMapper --version 14.0.0
                    
NuGet\Install-Package AutoMapper -Version 14.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" Version="14.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="AutoMapper" Version="14.0.0" />
                    
Directory.Packages.props
<PackageReference Include="AutoMapper" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add AutoMapper --version 14.0.0
                    
#r "nuget: AutoMapper, 14.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.
#addin nuget:?package=AutoMapper&version=14.0.0
                    
Install AutoMapper as a Cake Addin
#tool nuget:?package=AutoMapper&version=14.0.0
                    
Install AutoMapper as a Cake Tool

AutoMapper

CI NuGet MyGet (dev) Documentation Status

What is AutoMapper?

AutoMapper is a simple little library built to solve a deceptively complex problem - getting rid of code that mapped one object to another. This type of code is rather dreary and boring to write, so why not invent a tool to do it for us?

This is the main repository for AutoMapper, but there's more:

How do I get started?

First, configure AutoMapper to know what types you want to map, in the startup of your application:

var configuration = new MapperConfiguration(cfg => 
{
    cfg.CreateMap<Foo, FooDto>();
    cfg.CreateMap<Bar, BarDto>();
});
// only during development, validate your mappings; remove it before release
#if DEBUG
configuration.AssertConfigurationIsValid();
#endif
// use DI (http://docs.automapper.org/en/latest/Dependency-injection.html) or create the mapper yourself
var mapper = configuration.CreateMapper();

Then in your application code, execute the mappings:

var fooDto = mapper.Map<FooDto>(foo);
var barDto = mapper.Map<BarDto>(bar);

Check out the getting started guide. When you're done there, the wiki goes in to the nitty-gritty details. If you have questions, you can post them to Stack Overflow or in our Gitter.

Where can I get it?

First, install NuGet. Then, install AutoMapper from the package manager console:

PM> Install-Package AutoMapper

Or from the .NET CLI as:

dotnet add package AutoMapper

Do you have an issue?

First check if it's already fixed by trying the MyGet build.

You might want to know exactly what your mapping does at runtime.

If you're still running into problems, file an issue above.

License, etc.

This project has adopted the code of conduct defined by the Contributor Covenant to clarify expected behavior in our community. For more information see the .NET Foundation Code of Conduct.

AutoMapper is Copyright © 2009 Jimmy Bogard and other contributors under the MIT license.

.NET Foundation

This project is supported by the .NET Foundation.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (3.6K)

Showing the top 5 NuGet packages that depend on AutoMapper:

Package Downloads
AutoMapper.Extensions.Microsoft.DependencyInjection

AutoMapper extensions for ASP.NET Core

AutoMapper.Collection

Collection Add/Remove/Update support for AutoMapper. AutoMapper.Collection adds EqualityComparison Expressions for TypeMaps to determine if Source and Destination type are equivalent to each other when mapping collections.

AutoMapper.Extensions.ExpressionMapping

Expression mapping (OData) extensions for AutoMapper

AutoMapper.Extensions.EnumMapping

Convention-based enum value mapping extension for AutoMapper.

Abp.AutoMapper

Abp.AutoMapper

GitHub repositories (331)

Showing the top 20 popular GitHub repositories that depend on AutoMapper:

Repository Stars
BeyondDimension/SteamTools
🛠「Watt Toolkit」是一个开源跨平台的多功能 Steam 工具箱。
jasontaylordev/CleanArchitecture
Clean Architecture Solution Template for ASP.NET Core
ppy/osu
rhythm is just a *click* away!
abpframework/abp
Open-source web application framework for ASP.NET Core! Offers an opinionated architecture to build enterprise software solutions with best practices on top of the .NET. Provides the fundamental infrastructure, cross-cutting-concern implementations, startup templates, application modules, UI themes, tooling and documentation.
aspnetboilerplate/aspnetboilerplate
ASP.NET Boilerplate - Web Application Framework
nopSolutions/nopCommerce
ASP.NET Core eCommerce software. nopCommerce is a free and open-source shopping cart.
dotnet/eShop
A reference .NET application implementing an eCommerce site
EduardoPires/EquinoxProject
Web Application ASP.NET 8 using Clean Architecture, DDD, CQRS, Event Sourcing and a lot of good practices
ChilliCream/graphql-platform
Welcome to the home of the Hot Chocolate GraphQL server for .NET, the Strawberry Shake GraphQL client for .NET and Nitro the awesome Monaco based GraphQL IDE.
anjoy8/Blog.Core
💖 ASP.NET Core 8.0 全家桶教程,前后端分离后端接口,vue教程姊妹篇,官方文档:
jasontaylordev/NorthwindTraders
Northwind Traders is a sample application built using ASP.NET Core and Entity Framework Core.
dotnetcore/Util
Util是一个.Net平台下的应用框架,旨在提升中小团队的开发能力,由工具类、分层架构基类、Ui组件,配套代码生成模板,权限等组成。
MapsterMapper/Mapster
A fast, fun and stimulating object to object Mapper
BililiveRecorder/BililiveRecorder
录播姬 | mikufans 生放送录制
cq-panda/Vue.NetCore
(已支持sqlsugar).NetCore、.Net6、Vue2、Vue3、Vite、TypeScript、Element plus+uniapp前后端分离,全自动生成代码;支持移动端(ios/android/h5/微信小程序。http://www.volcore.xyz/
Ombi-app/Ombi
Want a Movie or TV Show on Plex/Emby/Jellyfin? Use Ombi!
skoruba/IdentityServer4.Admin
The administration for the IdentityServer4 and Asp.Net Core Identity
fullstackhero/blazor-starter-kit
Clean Architecture Template for Blazor WebAssembly Built with MudBlazor Components.
oskardudycz/EventSourcing.NetCore
Examples and Tutorials of Event Sourcing in .NET
fluentmigrator/fluentmigrator
Fluent migrations framework for .NET
Version Downloads Last updated
14.0.0 2,292,790 2/14/2025
13.0.1 66,015,803 2/7/2024
12.0.1 93,810,982 1/16/2023
12.0.0 53,011,548 9/30/2022
11.0.1 52,922,496 2/4/2022
11.0.0 30,257,286 1/5/2022
10.1.1 138,677,510 10/16/2020
10.0.0 41,179,369 7/1/2020
9.0.0 98,178,957 8/12/2019
8.1.1 17,783,937 6/3/2019
8.1.0 11,628,304 4/25/2019
8.0.0 38,923,246 11/17/2018
7.0.1 35,817,185 6/18/2018
7.0.0-alpha-0001 648,302 4/10/2018
6.2.2 21,064,990 12/6/2017
6.2.1 1,878,312 11/16/2017
6.2.0 585,989 11/9/2017
6.1.1 12,988,400 6/27/2017
6.1.0 914,622 6/14/2017
6.0.2 6,397,012 3/22/2017
5.2.0 7,184,978 11/23/2016
5.1.1 4,975,091 8/12/2016
5.0.2 1,816,466 7/7/2016
5.0.0-beta-1 53,044 5/17/2016
4.2.1 8,072,572 2/24/2016
4.2.0 1,298,293 1/28/2016
4.1.1 5,355,062 10/26/2015
4.0.4 2,671,353 8/6/2015
4.0.0-alpha1 25,862 7/7/2015
3.3.1 10,629,541 1/29/2015
3.3.0 1,471,755 11/29/2014
3.2.1 3,831,725 4/25/2014
3.1.1 1,635,756 12/31/2013
3.1.0 267,295 11/17/2013
3.0.0 1,972,320 8/25/2013
2.2.1 2,251,552 2/18/2013
2.2.0 566,265 9/22/2012
2.1.267 850,218 4/15/2012
2.1.266 51,842 3/29/2012
2.1.265 58,171 2/29/2012
2.1.262 114,453 2/29/2012
2.1.1 65,654 4/15/2012
2.0.0 546,915 9/22/2011
1.1.2 98,804 3/8/2017
1.1.0.118 1,502,390 9/7/2011