Simple.AutoMapper 1.0.6

dotnet add package Simple.AutoMapper --version 1.0.6
                    
NuGet\Install-Package Simple.AutoMapper -Version 1.0.6
                    
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="Simple.AutoMapper" Version="1.0.6" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Simple.AutoMapper" Version="1.0.6" />
                    
Directory.Packages.props
<PackageReference Include="Simple.AutoMapper" />
                    
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 Simple.AutoMapper --version 1.0.6
                    
#r "nuget: Simple.AutoMapper, 1.0.6"
                    
#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 Simple.AutoMapper@1.0.6
                    
#: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=Simple.AutoMapper&version=1.0.6
                    
Install as a Cake Addin
#tool nuget:?package=Simple.AutoMapper&version=1.0.6
                    
Install as a Cake Tool

Simple.AutoMapper

High-performance object mapping for .NET. Public usage focuses on a simple reflection-based Mapper API. A compiled MappingEngine exists for internal use and configuration experiments.

Note: This README reflects v1.0.5. See docs/RELEASE.md for details.

Installation

  • NuGet package: Simple.AutoMapper
  • Target Frameworks: netstandard2.0, netstandard2.1, net8.0, net9.0
# PowerShell (Windows)
dotnet add package Simple.AutoMapper

What’s inside

There are two components:

  1. Mapper (simple, zero-config, reflection-based) — Public API
  • Map<TSource, TDestination>(TSource)
  • Map<TDestination>(object source)
  • Map<TSource, TDestination>(IEnumerable<TSource>)
  • Map<TSource, TDestination>(TSource source, TDestination destination) for in-place updates
  • List sync helpers returning SyncResult for upsert/remove operations
  1. MappingEngine (compiled, configurable) — Internal mapping methods
  • CreateMap<TSource, TDestination>() for future configuration support (e.g., Ignore/ForMember capture)
  • Compiled mapping methods are internal and not intended to be called from application code

Quick start — Mapping configuration (optional)

using Simple.AutoMapper.Core;

// 1) Configure once at startup
Mapper.CreateMap<UserEntity, UserDTO>();
Mapper.CreateMap<AddressEntity, AddressDTO>();

// 2) Map anywhere in your code using the public Mapper API
var userDto = Mapper.Map<UserEntity, UserDTO>(userEntity);
var userDtos = Mapper.Map<UserEntity, UserDTO>(userEntities);

Configuration helpers:

Mapper.CreateMap<Entity1, EntityDTO1>()
  .Ignore(d => d.SomeProperty)
  // Experimental in v1.0.5 — not fully supported, may not prevent cycles
  // .PreserveReferences()
  // .MaxDepth(5)

// Bidirectional mapping
Mapper.CreateMap<User, UserDto>()
  .ReverseMap();        // Auto-create UserDto -> User mapping

// NOTE: ForMember is currently stored but not yet applied at compile-time.
// NOTE: PreserveReferences/MaxDepth are experimental in v1.0.5 and can be considered placeholders.

EF Core read example (materialize first, then map):

// Configure once (e.g., at startup) and keep engine as a singleton
Mapper.CreateMap<User, UserDto>();
Mapper.CreateMap<Address, AddressDto>();

// Read list
var users = await db.Users
  .AsNoTracking()
  .Include(u => u.Address)
  .ToListAsync(cancellationToken); // materialize here

var dtos = Mapper.Map<User, UserDto>(users);

// Read single
var user = await db.Users
  .AsNoTracking()
  .Include(u => u.Address)
  .FirstOrDefaultAsync(u => u.Id == id, cancellationToken);

var dto = Mapper.Map<User, UserDto>(user);

// Pagination pattern
var query = db.Users.AsNoTracking();
var total = await query.CountAsync();
var page = await query.OrderBy(u => u.Id).Skip((i - 1) * size).Take(size).ToListAsync();
var pageDtos = Mapper.Map<User, UserDto>(page);

Quick start — Mapper (no configuration)

using Simple.AutoMapper.Core;

// Single object
var dto = Mapper.Map<Entity8, EntityDTO8>(entity);

// Collection
var dtos = Mapper.Map<Entity17, EntityDTO17>(entities);

// In-place update
Mapper.Map(sourceEntity, existingDto);

// List synchronization with keys
var result = Mapper.Map(dtoList, entityList, dto => dto.Id, e => e.Id, removeMissing: true);
// result: SyncResult { Added, Updated, Removed }

EF Core write/update patterns:

// Create (DTO -> Entity)
var order = Mapper.Map<CreateOrderDto, Order>(dto);
await db.Orders.AddAsync(order, cancellationToken);
await db.SaveChangesAsync(cancellationToken);

// Update in-place (DTO -> tracked Entity)
var entity = await db.Orders
  .Include(o => o.Items)
  .FirstOrDefaultAsync(o => o.Id == dto.Id, cancellationToken);
if (entity == null) return NotFound();

Mapper.Map(dto, entity);            // copy fields into the tracked instance
// Protect fields manually if needed (e.g., Id, RowVersion)
await db.SaveChangesAsync(cancellationToken);

// Child collection sync (key-based upsert/remove)
var sync = Mapper.Map(
  dto.Items,
  entity.Items,
  d => d.Id,
  e => e.Id,
  removeMissing: true);
// sync.Added / Updated / Removed
await db.SaveChangesAsync(cancellationToken);

Capabilities

  • Simple types, nullable simple types, enums, string, DateTime, Guid
  • Complex types (class) are mapped recursively
  • Collections: List<T> and arrays, plus common IEnumerable/ICollection/IList shapes
  • Null-safe: null sources or members remain null on destination
  • Thread-safe caching for MappingEngine

Performance notes

  • MappingEngine compiles on first use and reuses cached delegates — subsequent calls are typically faster.
  • Actual timings depend on environment; treat the first mapping as a warm-up.

Limitations (current)

  • ForMember mappings are captured but not yet emitted into the compiled expression; Ignore works.
  • Circular references aren’t handled in v1.0.5 (may cause stack overflows for cyclic graphs). The PreserveReferences/MaxDepth options are experimental and not fully supported.
  • Destination types must have parameterless constructors (new()).
  • Do not call mapping APIs inside IQueryable; they cannot be translated to SQL. Use EF Core Select for projections and map after materialization.

Samples and tests

  • See samples/Program.cs and samples/MappingEngineExample.cs for end-to-end usage.
  • Extensive unit tests live under tests/ covering nested objects, collections, nullables, and performance characteristics.

License

See LICENSE.md.

👥 Team

Core Development Team


Built with ❤️ by the ODINSOFT Team

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  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 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 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos 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
1.0.6 95 8/22/2025
1.0.5 124 8/21/2025
1.0.4 117 8/20/2025

v1.0.6
- Include XML docs in the NuGet package and improve public API documentation
- Strengthen cache behavior and tests; subsequent runs equal or faster than first
- Add in-place update sample and related tests
- General docs cleanup (README/ROADMAP/RELEASE)
- No breaking changes; targets unchanged: netstandard2.0, netstandard2.1, net8.0, net9.0