具有匹配前缀的 Automapper 地图属性

发布于 2024-11-25 18:29:58 字数 206 浏览 3 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

久夏青 2024-12-02 18:29:58

您可以使用 .Ignore 忽略映射中对象的属性。所以下面会自动映射匹配对象的所有剩余属性,但它会忽略 propA。

    Mapper.CreateMap<ObjectA, ObjectB>()
        .ForMember(dest => dest.propA, opt => opt.Ignore());

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.

    Mapper.CreateMap<ObjectA, ObjectB>()
        .ForMember(dest => dest.propA, opt => opt.Ignore());
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文