Map one object to another
Install package from nuget.org
NuGet\Install-Package JFA.Mapper -Version <VERSION>
Map one object to another
var user = new User()
{
Id = 1
Name = "Csharp",
Email = "email@example.com"
};
var userDto = user.To<UserDto>(config);
Supports configuration
var config = new MapperConfig();
// with property name. (fromProperty, toProperty)
config.Map("Email", "EmailAddress");
// or with expression
config.Map<User, UserDto>(u => u.Id, dto => dto.Age);
var userDto = user.To<UserDto>(config);