AutoMapperConfiguration.Reflection
1.1.0
dotnet add package AutoMapperConfiguration.Reflection --version 1.1.0
NuGet\Install-Package AutoMapperConfiguration.Reflection -Version 1.1.0
<PackageReference Include="AutoMapperConfiguration.Reflection" Version="1.1.0" />
paket add AutoMapperConfiguration.Reflection --version 1.1.0
#r "nuget: AutoMapperConfiguration.Reflection, 1.1.0"
// Install AutoMapperConfiguration.Reflection as a Cake Addin #addin nuget:?package=AutoMapperConfiguration.Reflection&version=1.1.0 // Install AutoMapperConfiguration.Reflection as a Cake Tool #tool nuget:?package=AutoMapperConfiguration.Reflection&version=1.1.0
AutoMapper.ReflectionConfiguration
Automatically creates an AutoMapper profile by Reflection and provides an easy way to register your mappings.
How it works?
By installing this package you will receive three interfaces to work with - IMapTo, IMapFrom and IHaveCustomMappings. They will give you all you need to register your mappings. During application start up all classes that implements this three interfaces will be collected and registered in new AutoMapper profile.
How to use?
- First you need to register AutoMapper and provide all assemblies that contains mapping classes. This extension method will register your assemblies and will register AutoMapper into ASP.NET IOC Container that means you can inject IMapper interface whatever its needed.
public void ConfigureServices(IServiceCollection services)
{
// Rest of registrations here.
services.AddAutoMapper(typeof(ErrorViewModel).GetTypeInfo().Assembly, typeof(UserServiceModel).GetTypeInfo().Assembly);
}
After this all you need to do is to write your C# classes and specify how they should be mapped. This will be easy with IMapTo and IMapFrom interfaces. All you need to do is to implement them and specify destination/source class. In case you have some difference in property naming or want to settup some thing custom mapping you can do this by implementing IHaveCustomMappings interface. This will enforce you to implement a method in witch you can do wathever its needed. Here is some examples:
- IMapFrom
public class UserDetailsViewModel : IMapFrom<User>
{
public string Id { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public string UserName { get; set; }
}
- IMapTo
public class AddUserInputModel : IMapTo<User>
{
public string FirstName { get; set; }
public string LastName { get; set; }
public string UserName { get; set; }
}
- IHaveCustomMappings
public class UserDetailsViewModel : IMapFrom<User>, IHaveCustomMappings
{
public string Id { get; set; }
public string FullName { get; set; }
public string UserName { get; set; }
public void CreateMappings(IProfileExpression configuration)
{
configuration.CreateMap<User, UserDetailsViewModel>()
.ForMember(x => x.FullName, cfg => cfg.MapFrom(y => y.FirstName + y.LastName));
}
}
Product | Versions 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 was computed. 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. |
.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 was computed. |
.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. |
-
.NETStandard 2.0
- AutoMapper (>= 9.0.0)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 3.1.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.