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.
<PackageVersion Include="ImmutaMap" Version="9.1.10" />
                    
Directory.Packages.props
<PackageReference Include="ImmutaMap" />
                    
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 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.
#addin nuget:?package=ImmutaMap&version=9.1.10
                    
Install ImmutaMap as a Cake Addin
#tool nuget:?package=ImmutaMap&version=9.1.10
                    
Install ImmutaMap as a Cake Tool

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.  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

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 186 1/21/2024
9.1.9 104 1/21/2024
9.1.8 1,297 10/26/2023
9.1.7 133 10/26/2023
9.1.6 124 10/26/2023
9.1.5 146 10/26/2023
9.1.4 136 10/26/2023
9.1.3 137 10/25/2023
9.0.0 152 10/25/2023
8.0.1 272 10/12/2023
7.0.1 340 8/12/2023
7.0.0 620 4/4/2023
6.0.0 505 9/1/2022
2.5.3 687 8/31/2022
2.5.2 998 4/19/2021
2.5.1 443 3/25/2021
2.5.0 499 3/17/2021
2.4.1 411 3/15/2021
2.4.0 392 3/15/2021
2.3.0 374 3/15/2021
2.2.0 383 3/12/2021
2.1.0 447 3/11/2021
2.0.0 393 3/7/2021
1.0.9 490 2/1/2021
1.0.8 532 1/10/2021
1.0.7 527 1/10/2021
1.0.6 468 1/9/2021
1.0.5 480 1/8/2021
1.0.4 421 1/7/2021
1.0.3 414 1/6/2021
1.0.2 412 1/6/2021
1.0.1 442 12/21/2020
1.0.0 417 12/21/2020