映射“X”的所有属性;使用 AutoMapper 键入

发布于 2024-08-24 07:24:18 字数 141 浏览 7 评论 0 原文

我刚刚开始使用 AutoMapper,到目前为止发现它非常简单且节省时间。

只有一件事我不确定 - 如何以相同的方式映射给定类型的所有属性?

可以像常规映射一样使用 lambda 在单个语句中使用 AutoMapper 来完成此操作吗?

I've just started using AutoMapper and so far found it very straight-forward and time-saving.

Just one thing I'm not sure about - how do I map all the properties of a given type in the same way?

Can this be done with AutoMapper in a single statement, using a lambda, as with regular mapping?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

挽手叙旧 2024-08-31 07:24:18

您正在寻找的内容称为 CustomTypeConverter。这些是全局范围的,并且只需要配置一次。

语法为:

Mapper.CreateMap<TSourceProperty,TDestinationProperty>().ConvertUsing(argument);

其中 argument 可以是

  1. ITypeConverter 的实现
  2. A Func

Jimmy Bogard 有一篇文章关于实现 CustomTypeConverter,位于 http://www.lostechies.com/blogs/jimmy_bogard/archive/2009/05/05/automapper-feature-custom-type-converters.aspx

AutoMapper 文档的 CustomTypeConverter 页面

哦,顺便说一句(因为我想要 Omu 的赏金)你也可以通过切换到 valueinjecter 来做到这一点。

What you are looking for is known as a CustomTypeConverter. These are global in scope, and only need to be configured once.

The syntax is:

Mapper.CreateMap<TSourceProperty,TDestinationProperty>().ConvertUsing(argument);

where argument can be

  1. An implementation of ITypeConverter<TSourceProperty,TDestinationProperty>
  2. A Func<TSourceProperty,TDestinationProperty>

Jimmy Bogard has an article on implementing CustomTypeConverters at http://www.lostechies.com/blogs/jimmy_bogard/archive/2009/05/05/automapper-feature-custom-type-converters.aspx .

More information is also provided in the CustomTypeConverter page of the AutoMapper documentation.

Oh, and by the way (since I want Omu's bounty) you can also do this by switching to valueinjecter.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文