AutoMapper - 添加自定义格式化程序
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
固定的。为了将来参考,Mapper.AddFormatter 实际上设置了 Automap 将使用的默认格式化程序。要设置特定类型的格式化程序,您需要使用:
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:
Doh...