4

我正在尝试将模型映射到具有从 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; }
}

我的自动映射器简介:

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(闭包,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,Version=0.0.0.0,Culture=neutral,PublicKeyToken=abc123ef45”的“Proxy_KenticoCloud.Delivery.IRichTextContent_12345678_”类型中的方法“GetEnumerator”没有实现。

4

1 回答 1

1

只是为了让Lucian Bargaoanu评论中的答案更加明显。

解决方案之一是将以下映射添加到 Automapper 配置文件:

CreateMap<IRichTextContent, IRichTextContent>().ConvertUsing(s=>s);
于 2019-01-22T13:57:42.120 回答