HI,
I am using autommaper in my app and for now I have one problem. When I use ConstructUsing method for specify constructor to map object, after that Automapper copy all other fields by default convention. But I don’t need that. How I can set, that Mapper should use JUST constructor without copy anything else? Or the only way is to write custom Converter.
Use
.ForAllMembers(opt => opt.Ignore())to avoid additional mapping. Only method call will be performed in this case.