AdvancedObjectMapper 1.0.6
dotnet add package AdvancedObjectMapper --version 1.0.6
NuGet\Install-Package AdvancedObjectMapper -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="AdvancedObjectMapper" Version="1.0.6" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="AdvancedObjectMapper" Version="1.0.6" />
<PackageReference Include="AdvancedObjectMapper" />
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 AdvancedObjectMapper --version 1.0.6
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: AdvancedObjectMapper, 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 AdvancedObjectMapper@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=AdvancedObjectMapper&version=1.0.6
#tool nuget:?package=AdvancedObjectMapper&version=1.0.6
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
# AdvancedObjectMapper
A powerful, AutoMapper-like object mapping library for .NET 8+ applications with fluent configuration and dependency injection support.
## Features
- ✅ Fluent Configuration API
- ✅ Dependency Injection Support
- ✅ Profile-based Configuration
- ✅ Custom Value Resolvers
- ✅ Deep Object Mapping
- ✅ Collection Mapping
- ✅ Attribute-based Mapping
- ✅ Type Safety with IntelliSense
## Installation
```bash
Install-Package AdvancedObjectMapper
🚀 Quick Start
1. Create Mapping Profile
public class UserMappingProfile : MappingProfile
{
public override void Configure(IMapperConfiguration config)
{
config.CreateMap<Employee, User>()
.ForMember(u => u.UserId, opt => opt.MapFrom(e => e.EmployeeId))
.ForMember(u => u.FullName, opt => opt.MapFrom(e => $"{e.FirstName} {e.LastName}"));
}
}
2. Register in Program.cs
builder.Services.AddAdvancedObjectMapper(typeof(UserMappingProfile));
3. Use in Controllers/Services
public class UserService
{
private readonly IMapper _mapper;
public UserService(IMapper mapper)
{
_mapper = mapper;
}
public User GetUser(Employee employee)
{
return _mapper.Map<Employee, User>(employee);
}
}
## 🧩 Supported Mapping Scenarios
| Feature | Supported |
| ------------------------- | -------------- |
| Basic Property Mapping | ✅ |
| Property Name Overrides | ✅ |
| Nested Object Mapping | ✅ |
| List & Collection Mapping | ✅ |
| Custom Value Resolvers | ✅ |
| Reverse Mapping | 🚧 Coming Soon |
| Attributes-Based Mapping | 🚧 Coming Soon |
## 📁 Project Structure Suggestion
/YourApp
│
├── MappingProfiles/
│ └── UserMappingProfile.cs
│
├── Services/
│ └── UserService.cs
│
├── Models/
│ ├── Employee.cs
│ └── User.cs
License
MIT License
🤝 Contributing We welcome contributions! If you’d like to report a bug, request a feature, or contribute code, please submit an issue or pull request.
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 was computed. 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.