In my Global.asax:
AutoMapper.Mapper.CreateMap<ViewModel, DataType>()
.ForMember(dest => dest.User, opt => opt.Ignore());
In my MVC Action:
AutoMapper.Mapper.Map(viewmodel, data);
Prior to calling the Map() function, data.User is not null. Immediately after calling Map(), data.User is now null, however, if I am understanding correctly, Ignore() should completely ignore that property and leave it untouched. Any ideas as to what might be causing this?