Automapper Mapper.DynamicMap(....)

4.6k Views Asked by At

Mapper.DynamicMap(object, source, destination) is deprecated in the latest version of Automapper.

What is the alternative of this method when the source and destination values are not known until runtime?

1

There are 1 best solutions below

0
On BEST ANSWER

I found the answer. It was all put into one method:

Mapper.Map(object, source, destination)