Skip to content

javlonfattoev/JFA.Mapper

Repository files navigation

JFA.Mapper

Map one object to another

Steps

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);

About

Map one object to another

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages