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