Trying to automap some objects. Source objects has properties with _ before name, destination objects - have not. Is it possible to implement ONE map creation, that auto
This is how I'm doing it
Mapper.Initialize(cfg => { cfg.RecognizeDestinationPrefixes(new []{"_"}); cfg.RecognizePrefixes(new[] { "_" }); cfg.CreateMap().ReverseMap(); });