GM.Mapper 1.3.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package GM.Mapper --version 1.3.0
                    
NuGet\Install-Package GM.Mapper -Version 1.3.0
                    
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="GM.Mapper" Version="1.3.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="GM.Mapper" Version="1.3.0" />
                    
Directory.Packages.props
<PackageReference Include="GM.Mapper" />
                    
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 GM.Mapper --version 1.3.0
                    
#r "nuget: GM.Mapper, 1.3.0"
                    
#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 GM.Mapper@1.3.0
                    
#: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=GM.Mapper&version=1.3.0
                    
Install as a Cake Addin
#tool nuget:?package=GM.Mapper&version=1.3.0
                    
Install as a Cake Tool

GM.Mapper

CI NuGet License: MIT

A tiny, dependency-injection-friendly object mapper for .NET — a thin, opinionated setup over Mapster. One call wires up IMapper and the global TypeAdapterConfig so you can inject a mapper anywhere. Targets net10.0.

Install

dotnet add package GM.Mapper

Register

using GM.Mapper;

services.AddGMMapper();

Map

Inject MapsterMapper.IMapper and map between types:

public class PeopleService(IMapper mapper)
{
    public PersonDto ToDto(Person person) => mapper.Map<PersonDto>(person);
}

GM.Mapper also brings in Mapster.EFCore, so you can project IQueryable straight to DTOs:

var dtos = dbContext.People.ProjectToType<PersonDto>().ToList();

Configure custom mappings with Mapster's TypeAdapterConfig as usual:

TypeAdapterConfig<Person, PersonDto>.NewConfig()
    .Map(dest => dest.FullName, src => $"{src.First} {src.Last}");

Contributing & releases

Versioning is automated from Conventional Commits — see CONTRIBUTING.md.

License

MIT — see LICENSE.

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

NuGet packages (1)

Showing the top 1 NuGet packages that depend on GM.Mapper:

Package Downloads
GM.API.Shared

Shared primitives for the GM.API stack, built on GM.Mapper. Part of the GM.API family.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.3.2 143 7/30/2026
1.3.1 90 7/29/2026
1.3.0 104 7/29/2026
1.2.0 145 7/2/2026
1.1.0 325 6/5/2025
1.0.0 229 6/5/2025