Cartographer.Mapper
0.1.4
dotnet add package Cartographer.Mapper --version 0.1.4
NuGet\Install-Package Cartographer.Mapper -Version 0.1.4
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="Cartographer.Mapper" Version="0.1.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Cartographer.Mapper" Version="0.1.4" />
<PackageReference Include="Cartographer.Mapper" />
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 Cartographer.Mapper --version 0.1.4
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Cartographer.Mapper, 0.1.4"
#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.
#:package Cartographer.Mapper@0.1.4
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Cartographer.Mapper&version=0.1.4
#tool nuget:?package=Cartographer.Mapper&version=0.1.4
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Cartographer.Mapper
AutoMapper-style object mapper for .NET 8/9/10 with profiles, fluent configuration, converters, inheritance support, global options, and DI integration.
Install
dotnet add package Cartographer.Mapper
Quick start
using Cartographer.Core.Abstractions;
using Cartographer.Core.Configuration;
public class UserProfile : Profile
{
protected override void ConfigureMappings(IMapperConfigurationExpression cfg)
{
cfg.CreateMap<User, UserDto>()
.ForMember(d => d.FullName, o => o.MapFrom(s => $"{s.FirstName} {s.LastName}"))
.ForMember(d => d.Nickname, o => { o.Condition(s => !string.IsNullOrEmpty(s.Nickname)); o.MapFrom(s => s.Nickname); })
.BeforeMap((s, d) => d.Trace = "before")
.AfterMap((s, d) => d.Trace = "after")
.ReverseMap();
}
}
var config = new MapperConfiguration(cfg =>
{
cfg.CreateMap<User, UserDto>();
new UserProfile().Apply(cfg);
});
var mapper = config.CreateMapper();
var dto = mapper.Map<UserDto>(new User { FirstName = "Ada", LastName = "Lovelace" });
ASP.NET Core integration
using Cartographer.Core.DependencyInjection;
using Cartographer.Core.Configuration.Naming;
using Cartographer.Core.Configuration;
builder.Services.AddCartographer(cfg =>
{
cfg.SourceNamingConvention = new SnakeCaseNamingConvention();
cfg.DestinationNamingConvention = new PascalCaseNamingConvention();
cfg.MaxDepth = 3;
cfg.PreserveReferences = true;
cfg.NullCollectionStrategy = NullCollectionStrategy.UseEmptyCollection;
new UserProfile().Apply(cfg);
});
Features
- Familiar API:
CreateMap,ForMember(MapFrom,Ignore,Condition,PreCondition,ConvertUsing),ReverseMap. - Hooks:
BeforeMap,AfterMap. - Inheritance:
Include,IncludeBase. - Converters: value converters and type converters.
- Global options:
MaxDepth,PreserveReferences,NullCollectionStrategy. - Naming conventions and custom member matching strategies.
- Attribute-based config:
[MapFrom],[IgnoreMap]. - Map into existing instances.
- Expression-compiled delegates for performance.
- DI extensions with profile scanning.
- Multi-target: net8.0, net9.0, and net10.0.
Examples
- Console sample:
src/Cartographer.App. - Web APIs:
example/Cartographer.Example.Api(net10/net9) andexample/Cartographer.Example.Net8Api(net10/net8) with in-memory services/controllers showing DI + profiles + inheritance.
Package info
- Package ID:
Cartographer.Mapper - License: MIT
- Repository: CartoGrapher
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 is compatible. 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 is compatible. 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. net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net10.0
-
net8.0
-
net9.0
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Repository: https://github.com/Mdsomratakbor/cartographer