如果属性类型与同一属性名称不同,我如何忽略映射?
默认情况下,它会抛出错误.
默认情况下,它会抛出错误.
Mapper.CreateMap<EntityAttribute,LeadManagementService.LeadEntityAttribute>(); Model = Mapper.Map<EntityAttribute,LeadManagementService.LeadEntityAttribute>(EntityAttribute);
.ForMember(d=>d.Field,m=>m.Ignore());
因为将来我可能会添加新属性.所以我需要忽略具有不同数据类型的所有属性的映射.
@H_301_11@