AutoMapper Exclude Fields

旧城冷巷雨未停 提交于 2019-12-04 15:27:52

问题


I'm trying to map one object to another but the object is quite complex. During development, I'd like the ability to either exclude a bunch of fields and get to them one by one or be able to specify to map only fields I want and increase that as each test succeeds.

So:

class    
    string field1    
    string field2    
    string field3

Now I'd like to map field1, test, fix and then move onto field2 then field3.

Is this possible?


回答1:


.ForMember(dto => dto.field1, opt => opt.Ignore());


来源:https://stackoverflow.com/questions/3146606/automapper-exclude-fields

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!