How can I ignore mapping if property type is different with same property name? By default it\'s throwing error.
Mapper.CreateMap
You should use ignore for properties that should be ignored:
Mapper.CreateMap() ForMember(d=>d.FieldToIgnore, m=>m.Ignore());