具有匹配前缀的 Automapper 地图属性
我正在使用 Automapper 进行各种映射。现在我想使用 Automapper 从 ObjectSrc 更新 ObjectDest。两个对象具有相同的类型,因此通常所有属性都会被映射,但我只想要名称以“View_”为前缀的映射属性,其余属性保持不变。
是否可以使用某种条件来做到这一点,因为我想在许多不同的对象上使用它,但总是在相同类型的两个对象之间使用,
谢谢
I am using Automapper for various mappings. Now I would like to use Automapper to update ObjectDest from ObjectSrc. Both objects are of same type, so normally all properties will be mapped, but I want only map properties which have name prefixed with "View_", the rest sould stay unmodified.
Is it possible to do this, using some kind of condition, because I would like to use it on many different objects, but always between two objects of same type
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 .Ignore 忽略映射中对象的属性。所以下面会自动映射匹配对象的所有剩余属性,但它会忽略 propA。
You can ignore properties of objects in a mapping by using .Ignore. So below will automatically map all remaining properties of the objects that match, but it will ignore propA.