AutoMapper - 添加自定义格式化程序

发布于 2024-08-20 18:59:39 字数 277 浏览 7 评论 0原文

我正在使用 AutoMapper 1.0 RTW 并添加几个自定义格式化程序:

    Mapper.AddFormatter<AlertTypeFormatter>(); 
    Mapper.AddFormatter<DateStringFormatter>();

目标类型都是字符串,并且格式化程序单独工作。但是将它们放在一起,只有第一个格式化程序被调用。在本例中为“AlertTypeFormatter”。

有什么想法吗?

I am using AutoMapper 1.0 RTW and adding a couple of custom formatters:

    Mapper.AddFormatter<AlertTypeFormatter>(); 
    Mapper.AddFormatter<DateStringFormatter>();

The destination types are both string and the formatters work individually. But put them together and only the first formatter gets called. In this case the "AlertTypeFormatter".

Any ideas?

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

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

发布评论

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

评论(1

月亮坠入山谷 2024-08-27 18:59:39

固定的。为了将来参考,Mapper.AddFormatter 实际上设置了 Automap 将使用的默认格式化程序。要设置特定类型的格式化程序,您需要使用:

Mapper.ForSourceType<DateTime>().AddFormatter<DateStringFormatter>();

Doh...

Fixed. For future reference, Mapper.AddFormatter actually sets up the default formatter that Automap will use. To setup type specific formatters you need to use:

Mapper.ForSourceType<DateTime>().AddFormatter<DateStringFormatter>();

Doh...

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