ObjectCartographer 3.0.44

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

// Install ObjectCartographer as a Cake Tool
#tool nuget:?package=ObjectCartographer&version=3.0.44

ObjectCartographer

.NET Publish

ObjectCartographer is a fast, convention based, and developer friendly object to object mapper. It's designed to simplify your life and remove the drudgery of writing code to copy data from one object to another.

Setting Up the Library

ObjectCartographer uses a library called Canister for registering itself in your ServiceCollection:

servicecollection.AddCanisterModules();

With that ObjectCartographer will automatically register any converters found in your application and work with your DI system if you are using one, allowing you to access the DataMapper object at run time if you need to. Otherwise if you are not using one, you can simply use the extension methods and it will wire itself up.

Basic Usage

Once the initial setup is done, we need to map our objects to each other. This is accomplished in a number of different ways. First by using the DataMapper class:

DataMapper.Map<MyClass1, MyClass2>()
            .AddMapping(MyClass1 => MyClass1.PropertyToReadFrom, (MyClass2, value) => MyClass2.PropertyToWriteTo = value)
            .AddMapping(MyClass1 => MyClass1.Property1 + MyClass1.Property2, (MyClass1, value) => MyClass2.ComputedProperty = value)
            .AddMapping(MyClass1 => MyClass1.A.B.C.D, (MyClass1, value) => MyClass2.ProjectionProperty = value)
            .Build();

The above code could also be written using the extension method Map:

MyClass1Object.Map<MyClass1, MyClass2>()
                .AddMapping(MyClass1 => MyClass1.PropertyToReadFrom, (MyClass2, value) => MyClass2.PropertyToWriteTo = value)
                .AddMapping(MyClass1 => MyClass1.Property1 + MyClass1.Property2, (MyClass1, value) => MyClass2.ComputedProperty = value)
                .AddMapping(MyClass1 => MyClass1.A.B.C.D, (MyClass1, value) => MyClass2.ProjectionProperty = value)
                .Build();
				

You can also supply your own method for copying the data:

MyClass1Object.Map<MyClass1, MyClass2>()
                .UseMethod(MyCopier)
                .Build();

It's also possible, if you'd prefer, for the system to map everything for you based on the conventions that the system uses:

DataMapper.AutoMap<MyClass1, MyClass2>();

Or:

MyClass1Object.AutoMap<MyClass2>();

And lastly, you can simply skip the above steps all together and simply start using the library:

MyClass2 Result = MyClass1Object.To<MyClass2>();

If you don't set up the mapping beforehand, the library will go through the properties on MyClass1 and map them to properties with the same name on MyClass2. It compares the property names by first looking for exact matches, then it will drop underscores and compare them ignoring case.

Give Me Speed

The library is about 34% faster than AutoMapper in more complex scenarios:


BenchmarkDotNet=v0.13.0, OS=Windows 10.0.18363.1440 (1909/November2019Update/19H2)
Intel Core i7-9850H CPU 2.60GHz, 1 CPU, 12 logical and 6 physical cores
.NET SDK=5.0.203
  [Host]     : .NET 5.0.6 (5.0.621.22011), X64 RyuJIT
  DefaultJob : .NET 5.0.6 (5.0.621.22011), X64 RyuJIT


Method Mean Error StdDev Ratio RatioSD Rank
AutoMapper 91.575 ns 0.9259 ns 0.8661 ns 1.34 0.02 2
ObjectCartographer 68.374 ns 0.6952 ns 0.6163 ns 1.00 0.00 1

And about 350% faster when an object is supplied to it and only data copying is required.


BenchmarkDotNet=v0.13.0, OS=Windows 10.0.18363.1440 (1909/November2019Update/19H2)
Intel Core i7-9850H CPU 2.60GHz, 1 CPU, 12 logical and 6 physical cores
.NET SDK=5.0.203
  [Host]     : .NET 5.0.6 (5.0.621.22011), X64 RyuJIT
  DefaultJob : .NET 5.0.6 (5.0.621.22011), X64 RyuJIT


Method Mean Error StdDev Median Ratio RatioSD Rank
AutoMapper 88.796 ns 1.4598 ns 3.2951 ns 87.404 ns 3.48 0.16 2
ObjectCartographer 26.804 ns 0.2989 ns 0.2650 ns 26.712 ns 1.00 0.00 1

Installation

The library is available via Nuget with the package name "ObjectCartographer". To install it run the following command in the Package Manager Console:

Install-Package ObjectCartographer

Note that there is a package that adds mapping for ADO.Net specific data types: "ObjectCartographer.SQL" so the system can do things like map DbType to SqlDbType along with other functionality.

FAQ

  1. How do I add my own converter to the system?

You would need to implement the ObjectCartographer.ExpressionBuilder.Interfaces.IConverter interface. There is also the ObjectCartographer.ExpressionBuilder.BaseClasses.ConverterBaseClass abstract class to help with destination object creation/copy constructor discovery which is good in instances where you are mapping more complex objects. For simple data conversions like string to an int, the IConverter interface should be enough.

Build Process

In order to build the library you may require the following:

  1. Visual Studio 2019

Other than that, just clone the project and you should be able to load the solution and build without too much effort.

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on ObjectCartographer:

Package Downloads
ObjectCartographer.SQL

ObjectCartographer converters for helping with SQL/ADO.Net.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.44 36 3/28/2024
3.0.43 1,467 3/14/2024
3.0.42 682 3/13/2024
3.0.41 1,493 3/5/2024
3.0.40 214 3/4/2024
3.0.39 2,865 2/26/2024
3.0.38 2,275 2/21/2024
3.0.37 921 2/19/2024
3.0.36 2,262 2/8/2024
3.0.35 848 2/6/2024
3.0.34 590 2/2/2024
3.0.33 4,783 1/29/2024
3.0.32 2,267 1/19/2024
3.0.31 2,785 1/10/2024
3.0.30 4,829 12/11/2023
3.0.29 4,076 11/17/2023
3.0.28 1,208 11/16/2023
3.0.27 2,486 11/6/2023
3.0.26 2,176 10/30/2023
3.0.25 3,717 9/22/2023
3.0.24 1,452 9/18/2023
3.0.23 2,265 9/11/2023
3.0.22 1,071 9/11/2023
3.0.21 1,165 9/8/2023
3.0.20 1,754 9/5/2023
3.0.19 1,266 9/4/2023
3.0.18 1,284 9/1/2023
3.0.17 1,412 8/31/2023
3.0.16 1,430 8/30/2023
3.0.15 1,161 8/29/2023
3.0.14 1,510 8/28/2023
3.0.13 4,608 8/8/2023
3.0.12 1,328 8/7/2023
3.0.11 3,098 7/24/2023
3.0.10 2,302 7/13/2023
3.0.9 864 7/12/2023
3.0.8 1,154 7/10/2023
3.0.7 793 7/8/2023
3.0.6 809 7/8/2023
3.0.5 806 7/8/2023
3.0.4 867 7/8/2023
3.0.3 2,751 12/13/2022
3.0.2 1,012 12/13/2022
3.0.0 3,949 12/12/2022
2.0.14 10,232 6/6/2022
2.0.12 11,028 1/11/2022
2.0.10 1,162 10/15/2021
2.0.9 1,108 9/22/2021
2.0.8 4,052 6/21/2021
2.0.7 6,946 6/16/2021
2.0.6 2,112 6/16/2021
2.0.4 1,918 6/16/2021
2.0.2 2,290 6/15/2021
2.0.1 1,189 6/15/2021
1.1.0 3,635 3/28/2011