Popularity
4.5
Stable
Activity
0.0
Declining
453
17
25

Programming language: C#
License: MIT License
Latest version: v1.7

AgileMapper alternatives and similar packages

Based on the "Object to object mapping" category.
Alternatively, view AgileMapper alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of AgileMapper or a related project?

Add another 'Object to object mapping' Package

README

AgileMapper

NuGet version Build status

AgileMapper is a zero-configuration, highly-configurable, unopinionated object mapper with viewable execution plans. It flattens, unflattens, deep clones, merges, updates and projects queries via extension methods, or a static or instance API. It targets .NET 3.5+ and .NET Standard 1.0+.

You can use it to create new objects:

var customerDto = Mapper.Map(customer).ToANew<CustomerDto>();

...project queries:

var customerDtos = await context
    .Customers
    .Project().To<CustomerDto>()
    .ToArrayAsync();

...perform id-aware updates:

Mapper.Map(customerViewModel).Over(customer);

...and merges:

Mapper.Map(customerOne).OnTo(customerTwo);

It's available via NuGet and licensed with the MIT licence. Check out the documentation for more!


*Note that all licence references and agreements mentioned in the AgileMapper README section above are relevant to that project's source code only.