Facet.Mapping
5.1.11
dotnet add package Facet.Mapping --version 5.1.11
NuGet\Install-Package Facet.Mapping -Version 5.1.11
<PackageReference Include="Facet.Mapping" Version="5.1.11" />
<PackageVersion Include="Facet.Mapping" Version="5.1.11" />
<PackageReference Include="Facet.Mapping" />
paket add Facet.Mapping --version 5.1.11
#r "nuget: Facet.Mapping, 5.1.11"
#:package Facet.Mapping@5.1.11
#addin nuget:?package=Facet.Mapping&version=5.1.11
#tool nuget:?package=Facet.Mapping&version=5.1.11
Facet.Mapping
Facet.Mapping enables advanced static mapping logic for the Facet source generator.
This package defines strongly-typed interfaces that allow you to plug in custom mapping logic between source and generated Facet types with support for both synchronous and asynchronous operations, dependency injection, all at compile time with zero runtime reflection.
What is this for?
Facet lets you define slim, redacted, or projected versions of classes using just attributes.
With Facet.Mapping, you can go further and define custom logic like combining properties, renaming, transforming types, applying conditions, or performing async operations like database lookups and API calls.
How it works
Static Mappers (No Dependencies)
- Implement the
IFacetMapConfiguration<TSource, TTarget>interface. - Define a static
Mapmethod. - Point the
[Facet(...)]attribute to the config class usingConfiguration = typeof(...).
Instance Mappers (With Dependency Injection)
- Implement the
IFacetMapConfigurationAsyncInstance<TSource, TTarget>interface. - Define an instance
MapAsyncmethod. - Use the new extension methods that accept mapper instances.
Synchronous Mapping
- Implement
IFacetMapConfiguration<TSource, TTarget>(static) orIFacetMapConfigurationInstance<TSource, TTarget>(instance). - Define a
Mapmethod.
Asynchronous Mapping
- Implement
IFacetMapConfigurationAsync<TSource, TTarget>(static) orIFacetMapConfigurationAsyncInstance<TSource, TTarget>(instance). - Define a
MapAsyncmethod. - Use the async extension methods to perform mapping operations.
Hybrid Mapping
- Implement
IFacetMapConfigurationHybrid<TSource, TTarget>(static) orIFacetMapConfigurationHybridInstance<TSource, TTarget>(instance). - Define both
MapandMapAsyncmethods for optimal performance.
Install
dotnet add package Facet.Mapping
Examples
Basic Synchronous Mapping (Static)
public class User
{
public string FirstName { get; set; }
public string LastName { get; set; }
public int Id { get; set; }
}
[Facet(typeof(User), GenerateConstructor = true, Configuration = typeof(UserMapper))]
public partial class UserDto
{
public string FullName { get; set; }
public int Id { get; set; }
}
public class UserMapper : IFacetMapConfiguration<User, UserDto>
{
public static void Map(User source, UserDto target)
{
target.FullName = $"{source.FirstName} {source.LastName}";
}
}
Asynchronous Mapping
public class User
{
public string Email { get; set; }
public int Id { get; set; }
}
[Facet(typeof(User))]
public partial class UserDto
{
public string Email { get; set; }
public int Id { get; set; }
public string ProfilePicture { get; set; }
public decimal ReputationScore { get; set; }
}
public class UserAsyncMapper : IFacetMapConfigurationAsync<User, UserDto>
{
public static async Task MapAsync(User source, UserDto target, CancellationToken cancellationToken = default)
{
// Async database lookup (limited - no DI)
target.ProfilePicture = await GetProfilePictureAsync(source.Id, cancellationToken);
// Async API call (limited - no DI)
target.ReputationScore = await CalculateReputationAsync(source.Email, cancellationToken);
}
private static async Task<string> GetProfilePictureAsync(int userId, CancellationToken cancellationToken)
{
// Simple implementation without DI
await Task.Delay(100, cancellationToken);
return $"https://api.example.com/users/{userId}/avatar.jpg";
}
private static async Task<decimal> CalculateReputationAsync(string email, CancellationToken cancellationToken)
{
await Task.Delay(50, cancellationToken);
return Random.Shared.Next(1, 6) + (decimal)Random.Shared.NextDouble();
}
}
// Usage
var userDto = await user.ToFacetAsync<User, UserDto, UserAsyncMapper>();
Asynchronous Mapping with Dependency Injection
// Define your services
public interface IProfilePictureService
{
Task<string> GetProfilePictureAsync(int userId, CancellationToken cancellationToken = default);
}
public interface IReputationService
{
Task<decimal> CalculateReputationAsync(string email, CancellationToken cancellationToken = default);
}
// Implement services with real dependencies (DbContext, HttpClient, etc.)
public class ProfilePictureService : IProfilePictureService
{
private readonly IDbContext _dbContext;
private readonly ILogger<ProfilePictureService> _logger;
public ProfilePictureService(IDbContext dbContext, ILogger<ProfilePictureService> logger)
{
_dbContext = dbContext;
_logger = logger;
}
public async Task<string> GetProfilePictureAsync(int userId, CancellationToken cancellationToken = default)
{
try
{
var user = await _dbContext.Users.FindAsync(userId, cancellationToken);
return user?.ProfilePictureUrl ?? "/images/default-avatar.png";
}
catch (Exception ex)
{
_logger.LogError(ex, "Failed to load profile picture for user {UserId}", userId);
return "/images/default-avatar.png";
}
}
}
// Instance mapper with dependency injection
public class UserAsyncMapperWithDI : IFacetMapConfigurationAsyncInstance<User, UserDto>
{
private readonly IProfilePictureService _profilePictureService;
private readonly IReputationService _reputationService;
public UserAsyncMapperWithDI(IProfilePictureService profilePictureService, IReputationService reputationService)
{
_profilePictureService = profilePictureService;
_reputationService = reputationService;
}
public async Task MapAsync(User source, UserDto target, CancellationToken cancellationToken = default)
{
// Use injected services for real implementations
target.ProfilePicture = await _profilePictureService.GetProfilePictureAsync(source.Id, cancellationToken);
target.ReputationScore = await _reputationService.CalculateReputationAsync(source.Email, cancellationToken);
}
}
// Register in DI container
services.AddScoped<IProfilePictureService, ProfilePictureService>();
services.AddScoped<IReputationService, ReputationService>();
services.AddScoped<UserAsyncMapperWithDI>();
// Usage with DI
public class UserController : ControllerBase
{
private readonly UserAsyncMapperWithDI _userMapper;
public UserController(UserAsyncMapperWithDI userMapper)
{
_userMapper = userMapper;
}
[HttpGet("{id}")]
public async Task<UserDto> GetUser(int id)
{
var user = await GetUserFromDatabase(id);
// NEW: Use instance mapper with injected dependencies
return await user.ToFacetAsync(_userMapper);
}
[HttpGet]
public async Task<List<UserDto>> GetUsers()
{
var users = await GetUsersFromDatabase();
// NEW: Collection mapping with DI support
return await users.ToFacetsParallelAsync(_userMapper, maxDegreeOfParallelism: 4);
}
}
Hybrid Mapping with Dependency Injection
public class UserHybridMapperWithDI : IFacetMapConfigurationHybridInstance<User, UserDto>
{
private readonly IProfilePictureService _profilePictureService;
private readonly IReputationService _reputationService;
public UserHybridMapperWithDI(IProfilePictureService profilePictureService, IReputationService reputationService)
{
_profilePictureService = profilePictureService;
_reputationService = reputationService;
}
// Fast synchronous operations
public void Map(User source, UserDto target)
{
target.FullName = $"{source.FirstName} {source.LastName}";
target.Email = source.Email.ToLower();
}
// Expensive asynchronous operations with injected services
public async Task MapAsync(User source, UserDto target, CancellationToken cancellationToken = default)
{
target.ProfilePicture = await _profilePictureService.GetProfilePictureAsync(source.Id, cancellationToken);
target.ReputationScore = await _reputationService.CalculateReputationAsync(source.Email, cancellationToken);
}
}
// Usage
var userDto = await user.ToFacetHybridAsync(hybridMapperWithDI);
| 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. |
-
net10.0
- No dependencies.
-
net8.0
- No dependencies.
-
net9.0
- No dependencies.
NuGet packages (2)
Showing the top 2 NuGet packages that depend on Facet.Mapping:
| Package | Downloads |
|---|---|
|
Facet.Mapping.Expressions
Expression tree transformation and mapping utilities for Facet DTOs. Transform predicates, selectors, and other expressions between source entities and their Facet projections. |
|
|
Facet.Extensions.EFCore.Mapping
Advanced custom async mapper support for Facet with EF Core queries. Enables complex mappings that cannot be expressed as SQL projections. |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 5.1.11 | 94 | 12/9/2025 |
| 5.1.10 | 259 | 12/5/2025 |
| 5.1.9 | 725 | 12/3/2025 |
| 5.1.8 | 1,243 | 12/1/2025 |
| 5.1.7 | 547 | 12/1/2025 |
| 5.1.6 | 156 | 11/28/2025 |
| 5.1.5 | 145 | 11/28/2025 |
| 5.1.4 | 172 | 11/28/2025 |
| 5.1.3 | 175 | 11/28/2025 |
| 5.1.2 | 210 | 11/27/2025 |
| 5.1.1 | 203 | 11/27/2025 |
| 5.1.0 | 210 | 11/27/2025 |
| 5.0.4 | 327 | 11/26/2025 |
| 5.0.3 | 334 | 11/26/2025 |
| 5.0.2 | 245 | 11/26/2025 |
| 5.0.1 | 227 | 11/25/2025 |
| 5.0.0 | 253 | 11/24/2025 |
| 5.0.0-alpha5 | 197 | 11/24/2025 |
| 5.0.0-alpha4 | 187 | 11/23/2025 |
| 5.0.0-alpha3 | 192 | 11/22/2025 |
| 5.0.0-alpha2 | 203 | 11/22/2025 |
| 5.0.0-alpha | 280 | 11/21/2025 |
| 4.4.3 | 375 | 11/21/2025 |
| 4.4.2 | 372 | 11/21/2025 |
| 4.4.1 | 432 | 11/20/2025 |
| 4.4.1-alpha4 | 297 | 11/16/2025 |
| 4.4.1-alpha3 | 290 | 11/16/2025 |
| 4.4.1-alpha2 | 292 | 11/16/2025 |
| 4.4.1-alpha | 296 | 11/16/2025 |
| 4.4.0 | 443 | 11/15/2025 |
| 4.4.0-alpha | 236 | 11/14/2025 |
| 4.3.3.1 | 263 | 11/14/2025 |
| 4.3.3 | 256 | 11/14/2025 |
| 4.3.2.1 | 250 | 11/14/2025 |
| 4.3.2 | 389 | 11/13/2025 |
| 4.3.1 | 335 | 11/12/2025 |
| 4.3.0 | 898 | 11/8/2025 |
| 4.3.0-alpha | 163 | 11/7/2025 |
| 3.4.0 | 159 | 11/8/2025 |
| 3.3.0 | 228 | 11/7/2025 |
| 3.3.0-alpha.1 | 143 | 11/4/2025 |
| 3.3.0-alpha | 197 | 11/3/2025 |
| 3.2.2 | 1,891 | 10/29/2025 |
| 3.2.1 | 1,049 | 10/27/2025 |
| 3.2.1-alpha.1 | 127 | 10/27/2025 |
| 3.2.1-alpha | 183 | 10/26/2025 |
| 3.2.0-alpha | 181 | 10/26/2025 |
| 3.1.14 | 308 | 10/24/2025 |
| 3.1.13 | 275 | 10/24/2025 |
| 3.1.12 | 516 | 10/21/2025 |
| 3.1.11 | 190 | 10/21/2025 |
| 3.1.5 | 177 | 10/24/2025 |
| 3.1.4 | 188 | 10/23/2025 |
| 3.1.3 | 186 | 10/23/2025 |
| 3.1.3-alpha | 178 | 10/22/2025 |
| 3.1.2 | 180 | 10/21/2025 |
| 3.1.2-alpha | 178 | 10/22/2025 |
| 3.1.1 | 195 | 10/21/2025 |
| 3.1.0 | 267 | 10/19/2025 |
| 3.0.0 | 153 | 10/17/2025 |
| 2.9.31 | 393 | 10/13/2025 |
| 2.9.3 | 346 | 10/8/2025 |
| 2.9.3-alpha | 178 | 10/7/2025 |
| 2.9.2 | 1,342 | 10/6/2025 |
| 2.9.1 | 163 | 10/3/2025 |
| 2.9.0 | 272 | 10/1/2025 |
| 2.8.2 | 226 | 10/1/2025 |
| 2.8.1 | 1,278 | 9/21/2025 |
| 2.8.0 | 1,190 | 9/17/2025 |
| 2.7.0 | 502 | 9/12/2025 |
| 2.6.2 | 197 | 9/12/2025 |
| 2.6.1 | 343 | 9/10/2025 |
| 2.6.0 | 234 | 9/9/2025 |
| 2.5.0 | 384 | 9/4/2025 |
| 2.4.8 | 190 | 9/3/2025 |
| 2.4.7 | 425 | 9/1/2025 |
| 2.4.6 | 167 | 9/1/2025 |
| 2.4.5 | 235 | 8/30/2025 |
| 2.4.4 | 305 | 8/27/2025 |
| 2.4.3 | 216 | 8/27/2025 |
| 2.4.2 | 216 | 8/27/2025 |
| 2.4.0 | 203 | 8/26/2025 |
| 2.3.0 | 478 | 8/20/2025 |
| 2.2.0 | 169 | 8/20/2025 |
| 2.1.0 | 193 | 8/18/2025 |
| 2.0.1 | 645 | 8/5/2025 |
| 2.0.0 | 187 | 8/4/2025 |
| 1.9.3 | 161 | 7/4/2025 |
| 1.8.0 | 211 | 6/4/2025 |
| 1.7.0 | 203 | 5/6/2025 |
| 1.6.0 | 184 | 4/27/2025 |
| 1.5.0 | 171 | 4/26/2025 |
| 1.4.0 | 199 | 4/25/2025 |
| 1.3.0 | 228 | 4/24/2025 |
| 1.2.0 | 220 | 4/24/2025 |
| 1.1.1 | 228 | 4/23/2025 |
| 1.1.0 | 212 | 4/23/2025 |
| 1.0.0 | 786 | 4/23/2025 |