I am trying to ignore a property from my type when performing a mapping using AutoMapper. I define the mapping this way:
Mapper.CreateMap<TypeA, TypeA>().ForMember(dest => dest.Id, opt => opt.Ignore());
Both source and destination are the same. When I call the Map function, the destination identifier property is still updated. I am using the latest version downloaded from CodePlex.
source share