Automapper contains built-in functionality to convert from a Dictionary<string, object> to a concrete type. I need to preserve this functionality but append some logic in AfterMap. I cannot call CreateMap because that takes away the built-in functionality.
I also cannot create an inner mapper because I need other converters already defined.
I need it inside the MapperConfiguraton. I cannot get access to what I need outside of the MapperConfiguration, so I cannot define it on the final Map call.
In my attempts, this seems to be impossible but hopefully someone can prove me wrong and knows how to do it.