默认情况下,它会抛出错误.
Mapper.CreateMap<EntityAttribute,LeadManagementService.LeadEntityAttribute>();Model = Mapper.Map<EntityAttribute,LeadManagementService.LeadEntityAttribute>(EntityAttribute);
我知道一种方法来指定要忽略的属性名称,但这不是我想要的.@H_502_6@
.ForMember(d=>d.FIEld,m=>m.Ignore());
因为将来我可能会添加新属性.所以我需要忽略具有不同数据类型的所有属性的映射.@H_502_6@解决方法 您应该对应该忽略的属性使用ignore:
Mapper.CreateMap<EntityAttribute,LeadManagementService.LeadEntityAttribute>() ForMember(d=>d.FIEldToIgnore,m=>m.Ignore());总结
以上是内存溢出为你收集整理的automapper – 如果属性类型与同一属性名称不同,则忽略映射 – C#全部内容,希望文章能够帮你解决automapper – 如果属性类型与同一属性名称不同,则忽略映射 – C#所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)