Mapster
Mapster copied to clipboard
Simply Async Extensions
Add async mapping extensions:
-
AdaptAsync<TDestination>() -
MapAsync<TDestination>(source)from IMapper
Example of use:
var dto = await poco.AdaptAsync<Dto>();
IMapper mapper= new Mapper();
var destination = await mapper.MapAsync<Dto>(poco);