使用automapper映射COM对象

时间:2015-03-04 18:55:51

标签: automapper-3

我遇到从COM对象到对象的映射问题。我认为问题是COM对象上的GetType()返回System.__ComObject。我怎么能绕过这个?

Missing type map configuration or unsupported mapping.

Mapping types:
Recipient -> RecipientModel
Microsoft.Office.Interop.Outlook.Recipient -> MyApp.Forms.Models.RecipientModel

Destination path:
RecipientModel

Source value:
System.__ComObject

1 个答案:

答案 0 :(得分:0)

这是在AutoMapper Repo上提出的,解决方案是只映射到实现接口的COM类,或者只是在映射时转换。