MyMapper 2.2.0

.NET Standard 2.0 .NET Framework 4.0
dotnet add package MyMapper --version 2.2.0
NuGet\Install-Package MyMapper -Version 2.2.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="MyMapper" Version="2.2.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add MyMapper --version 2.2.0
#r "nuget: MyMapper, 2.2.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 MyMapper as a Cake Addin
#addin nuget:?package=MyMapper&version=2.2.0

// Install MyMapper as a Cake Tool
#tool nuget:?package=MyMapper&version=2.2.0

Light-weight, powerful object mapping framework. Fluent design. Async support. Supports .NET, .NET Standard 2.0 and .NET Core 2.0

.NET Fiddle demo Project site

Features:

  1. Fluent design.
  2. Async support. Parallel mapping support.
  3. Conditional, Switch mapping support.
  4. Mappings can be debugged by either setting a breakpoint or using Debugger.Break().
  5. Ability to do auto mapping of source and destination properties (with the same name) using reflection and add maps only for properties with different names. Reflective auto mapping can be turned off too.
  6. Ability to create multiple maps between the same source and destination types.
  7. Mappings happen dynamically on source instance.
  8. Ability to harness other maps. Other mappers can be chained as required.
  9. Dependency injectable.
  10. .NET Object and IEnumerable<T> integration extensions. Async support.
  11. Feature to map source to existing destination object.
Product Versions
.NET net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows
.NET Core netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1
.NET Standard netstandard2.0 netstandard2.1
.NET Framework net40 net403 net45 net451 net452 net46 net461 net462 net463 net47 net471 net472 net48 net481
MonoAndroid monoandroid
MonoMac monomac
MonoTouch monotouch
Tizen tizen40 tizen60
Xamarin.iOS xamarinios
Xamarin.Mac xamarinmac
Xamarin.TVOS xamarintvos
Xamarin.WatchOS xamarinwatchos
Compatible target framework(s)
Additional computed target framework(s)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.2.0 1,606 1/23/2018
2.1.0 1,048 11/20/2017
2.0.0 1,062 9/11/2017
1.4.0 887 8/14/2017
1.3.0 911 6/19/2017
1.2.0 909 5/1/2017
1.1.7 918 4/11/2017
1.1.6 919 2/6/2017
1.1.5 944 1/9/2017
1.1.4 982 12/5/2016
1.1.3 925 10/17/2016
1.1.2 937 8/29/2016
1.1.1 958 7/25/2016
1.1.0 947 6/13/2016
1.0.10 989 5/23/2016
1.0.9 984 5/9/2016
1.0.8 951 5/2/2016
1.0.6 1,317 4/18/2016
1.0.5 1,239 4/11/2016
1.0.4 930 4/4/2016
1.0.3 1,166 3/29/2016
1.0.2 962 1/19/2016
1.0.1 998 12/16/2015

Added feature to map source to existing destination object. Performance improvements. Further Async support.