XMapper 2.0.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package XMapper --version 2.0.1
NuGet\Install-Package XMapper -Version 2.0.1
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="XMapper" Version="2.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add XMapper --version 2.0.1
#r "nuget: XMapper, 2.0.1"
#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 XMapper as a Cake Addin
#addin nuget:?package=XMapper&version=2.0.1

// Install XMapper as a Cake Tool
#tool nuget:?package=XMapper&version=2.0.1

XMapper

The object-to-object mapper for C# that can be setup in a readable one-liner. No Attributes, no configuration - just write intuitive and safe code that works immediately. <p align="center"> <img src="https://avatars.githubusercontent.com/u/103217522?s=150&v=4" alt="XMapper logo"/> </p>

Available via NuGet.

Introduction

There's only one class in this package: XMapper<TSource, TTarget>. It has a single parameter of type PropertyList.

These are all the public methods:

  • IgnoreSourceProperty
  • IgnoreTargetProperty
  • IncludeAction
  • Map (2 overloads)

Hovering over XMapper and its methods in your editor will provide guiding documentation.

Examples

using XMapper;

Map to new

var dummy1 = new Dummy1 { ... };

var mapper = new XMapper<Dummy1, Dummy2>(PropertyList.Source);

var dummy2 = mapper.Map(dummy1);

Map to exising

var d1 = new Dummy1 { ... };
var d2 = new Dummy2 { ... };

var mapper = new XMapper<Dummy1, Dummy2>(PropertyList.Target)
    .IgnoreTargetProperty(x => x.Id);

mapper.Map(d1, d2);

Map enumerable members

Member is IEnumerable with reference type elements:

var d1Xd2 = new XMapper<Dummy1, Dummy2>(PropertyList.Source);
var mapper = new XMapper<DummyA, DummyB>(PropertyList.Source)
    .IncludeAction((source, target) => target.Dummy2List = source.Dummy1Array?.Select(x => d1Xd2.Map(x)).ToList());

Member is IEnumerable with ValueType elements:

var mapper = new XMapper<DummyA, DummyB>(PropertyList.Source)
    .IncludeAction((source, target) => target.XIntList = source.XIntArray?.ToList());

Map non-enumerable reference type members

var dummyA = new DummyA
{
    Dummy1Property = new Dummy1
    {
        ...
    },
    ...
};

var d1Xd2 = new XMapper<Dummy1, Dummy2>(PropertyList.Source);
var mapper = new XMapper<DummyA, DummyB>(PropertyList.Target)
    .IncludeAction((dummyA, dummyB) =>
    {
        if (dummyA.Dummy1Property == null)
        {
            dummyB.Dummy2Property = null;
        }
        else
        {
            d1Xd2.Map(dummyA.Dummy1Property, dummyB.Dummy2Property ??= new());
        }
    });

var dummyB = mapper.Map(dummyA);
var dummy2 = dummyB.Dummy2Property

Custom mapping of ValueTypes

var d1 = new Dummy1 { ... };
var d2 = new Dummy2 { ... };

var mapper = new XMapper<Dummy1, Dummy2>(PropertyList.Source)
    .IgnoreSourceProperty(x => x.MyInt)
    .IncludeAction((source, target) => target.MyInt = target.MyEnum > someValue ? null : target.MyInt = source.Number * 10);

mapper.Map(d1, d2);

Testing

Automate the testing of all your object-to-object mappers with one line of unit test code via XMapper.Testing.

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

    • No dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on XMapper:

Package Downloads
XMapper.Testing

Automate the testing of all your object-to-object mappers with one line of unit test code

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.2 986 4/22/2022
3.0.1 489 4/20/2022
3.0.0 603 4/17/2022
2.0.1 702 4/16/2022
2.0.0 558 4/13/2022
1.0.1 538 4/11/2022
1.0.0 407 4/10/2022
1.0.0-alpha 137 4/10/2022

See CHANGELOG.md at GitHub for release notes.