ImmutaMap 9.1.10

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

// Install ImmutaMap as a Cake Tool
#tool nuget:?package=ImmutaMap&version=9.1.10

ImmutaMap

Making the mapping of immutable types easier. Maps between records and classes.

Pull down source to review Tests and get an example of what can be done.

Map various property names. Map various property types. Map attributes on properties. Make your own custom mappings and add them.

See Test Examples:

Examples:

//With Extension
var firstBorn = new Person("Mike", "Doe", 42);
var twin = firstBorn.With(x => x.FirstName, "John");
//or
var twin = firstBorn.With(new {FirstName = "John" });

var item = new Item(Number = 1);
var nextItem = item.With(x => x.Number, number => number++);

//Immutable or not mapped to different immutable or not type
var person = new Person("Mike", "Doe", 42);
var employee = person.To<Employee>();

//Map same properties, different names
var person = new Person("Mike", "Doe", 42);
var employee = person.To<Employee>(config => config.MapName(x => x.FirstName, x => x.Name));



Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  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

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
9.1.10 113 1/21/2024
9.1.9 71 1/21/2024
9.1.8 1,102 10/26/2023
9.1.7 108 10/26/2023
9.1.6 98 10/26/2023
9.1.5 112 10/26/2023
9.1.4 104 10/26/2023
9.1.3 104 10/25/2023
9.0.0 118 10/25/2023
8.0.1 238 10/12/2023
7.0.1 308 8/12/2023
7.0.0 577 4/4/2023
6.0.0 462 9/1/2022
2.5.3 496 8/31/2022
2.5.2 877 4/19/2021
2.5.1 396 3/25/2021
2.5.0 443 3/17/2021
2.4.1 356 3/15/2021
2.4.0 347 3/15/2021
2.3.0 328 3/15/2021
2.2.0 334 3/12/2021
2.1.0 398 3/11/2021
2.0.0 344 3/7/2021
1.0.9 443 2/1/2021
1.0.8 483 1/10/2021
1.0.7 473 1/10/2021
1.0.6 423 1/9/2021
1.0.5 429 1/8/2021
1.0.4 370 1/7/2021
1.0.3 367 1/6/2021
1.0.2 366 1/6/2021
1.0.1 404 12/21/2020
1.0.0 369 12/21/2020