I know I can ignore a property when creating the map like this
CreateMap<ClaimExposure, ClaimExposure>();
.ForMember(x => x.Claim, opt => opt.Ignore())
but that's not what I'm looking for, I'm looking for a way I can do it when I map like this
_mapper.Map(claimExposureDto, claimExposure, opt => opt. ??)
And it only applies to this mapping instance. Is this possible?