SpereaMap 1.0.0
dotnet add package SpereaMap --version 1.0.0
NuGet\Install-Package SpereaMap -Version 1.0.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="SpereaMap" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="SpereaMap" Version="1.0.0" />
<PackageReference Include="SpereaMap" />
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 SpereaMap --version 1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: SpereaMap, 1.0.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 SpereaMap@1.0.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=SpereaMap&version=1.0.0
#tool nuget:?package=SpereaMap&version=1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
SpereaMap
A lightweight, high-performance object-to-object mapper for .NET built on compiled expression trees.
Features
- Convention-based mapping — matching property names automatically
- Flattening —
Customer.Emailmaps toCustomerEmail - Nested object mapping — child objects mapped recursively
- Collection mapping —
List<T>, arrays,IEnumerable<T> - ForMember / MapFrom — custom member configuration
- Ignore / NullSubstitute — skip members or provide defaults
- Conditions — PreCondition and post-resolution Condition
- Value Resolvers — class-based resolution logic
- Value Transformers — post-process values (e.g., trim strings)
- BeforeMap / AfterMap — hooks with optional context
- ResolutionContext — pass runtime parameters during mapping
- Profiles — organize related mappings
- ReverseMap — bidirectional mapping
- ConvertUsing / ConstructUsing — full control over conversion
- Validation — catch configuration errors early
- Compiled expression trees — near-native performance
Quick Start
using SpereaMap.Core;
var config = new SpereaMapConfiguration(cfg =>
{
cfg.CreateMap<Order, OrderDto>()
.ForMember(d => d.FullName, o => o.MapFrom(s => s.Customer.FirstName + " " + s.Customer.LastName))
.ForMember(d => d.Notes, o => o.Ignore());
});
config.AssertConfigurationIsValid();
var mapper = config.CreateMapper();
var dto = mapper.Map<Order, OrderDto>(order);
Passing Runtime Context
cfg.CreateMap<Order, OrderDto>()
.AfterMap((src, dest, ctx) =>
{
dest.Total *= (1 - ctx.Get<decimal>("discount"));
});
var dto = mapper.Map<Order, OrderDto>(order, ctx =>
{
ctx.Items["discount"] = 0.10m;
});
License
MIT
| 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
- No dependencies.
-
net8.0
- No dependencies.
-
net9.0
- No dependencies.
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.0 | 104 | 3/19/2026 |