Mapster icon indicating copy to clipboard operation
Mapster copied to clipboard

Simply Async Extensions

Open DocSvartz opened this issue 7 months ago • 0 comments

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

DocSvartz avatar Jun 13 '25 07:06 DocSvartz