我正在尝试将模型映射到具有从IEnumerable继承的类型的属性的ViewModel。这些属性具有相同的类型和名称,但是Automapper会将源转换为通用列表,然后无法映射到目标。
这些是我要映射的类:
BasicOverview
{
public IRichTextContent Intro { get; set; }
...
}
BlogOverviewViewModel
{
public IRichTextContent Intro { get; set; }
...
}
以下是定义IRichTextContent类型的第三方代码:
// Represents rich text content in a form of structured data
public interface IRichTextContent : IEnumerable<IRichTextBlock>, IEnumerable
{
//
// Summary:
// List of rich text content blocks
IEnumerable<IRichTextBlock> Blocks { get; set; }
}
我的Automapper个人资料:
public AutomapperProfile()
{
CreateMap<BasicOverview, BlogListViewModel>();
CreateMap<BasicOverview, ReviewListViewModel>();
CreateMap<BasicOverview, BlogOverviewViewModel>();
}
这是我得到的错误:
处理请求时发生未处理的异常。 InvalidCastException:无法转换类型为'System.Collections.Generic.List`1 [KenticoCloud.Delivery.IRichTextBlock]'的对象来键入'KenticoCloud.Delivery.IRichTextContent'。 lambda_method(Closure,BasicOverview,BlogOverviewViewModel,ResolutionContext)
AutoMapperMappingException:错误映射类型。
映射类型: BasicOverview-> BlogOverviewViewModel
类型映射配置: BasicOverview-> BlogOverviewViewModel
目的地会员: 介绍 lambda_method(Closure,BasicOverview,BlogOverviewViewModel,ResolutionContext)
我尝试将以下内容添加到我的Automapper个人资料中:
CreateMap<IEnumerable<IRichTextBlock>, IRichTextContent>()
.ForMember(dest => dest.Blocks, m => m.MapFrom(src => src));
哪个发生了以下错误:
TypeLoadException:程序集“ AutoMapper.Proxies,版本= 0.0.0.0,区域性=中性,PublicKeyToken = abc123ef45”中类型为“ Proxy_KenticoCloud.Delivery.IRichTextContent_12345678_”的方法“ GetEnumerator”没有实现。
答案 0 :(得分:1)
只是使来自Lucian Bargaoanu的评论中的答案更明显。
解决方案之一是将以下映射添加到Automapper配置文件中:
CreateMap<IRichTextContent, IRichTextContent>().ConvertUsing(s=>s);