[非专业翻译] Mapster - 配置嵌套映射

系列介绍

[非专业翻译] 是对没有中文文档进行翻译的系列博客,文章由机翻和译者自己理解构成,和原文相比有所有不同,但意思基本一致。

因个人能力有限,如有谬误之处还请指正,多多包涵。

正文

本文将说明 Mapster 中的 嵌套映射

映射配置

例如有以下 父类、子类:

public class ParentPoco
{
    public string Id { get; set; }
    public List<ChildPoco> Children { get; set; }
    public string Name { get; set; }
}
public class ChildPoco
{
    public string Id { get; set; }
    public List<GrandChildPoco> GrandChildren { get; set; }
}
public class GrandChildPoco
{
    public string Id { get; set; }
}

如果你配置了父类型:

TypeAdapterConfig<ParentPoco, ParentDto>.NewConfig()
    .PreserveReference(true);

默认情况下,子类型不会从 PreserveReference 中得到效果。

因此必须在 ParentPoco 中指定所有类型映射:

TypeAdapterConfig<ParentPoco, ParentDto>.NewConfig()
    .PreserveReference(true);
TypeAdapterConfig<ChildPoco, ChildDto>.NewConfig()
    .PreserveReference(true);
TypeAdapterConfig<GrandChildPoco, GrandChildDto>.NewConfig()
    .PreserveReference(true);

或者可以调用 全局配置实例 的 PreserveReference 方法:

TypeAdapterConfig.GlobalSettings.Default.PreserveReference(true);

Fork

你可以使用 Fork 方法来定义仅将指定的映射应用于嵌套映射而不污染全局设置的配置:

TypeAdapterConfig<ParentPoco, ParentDto>.NewConfig()
    .Fork(config => config.Default.PreserveReference(true));

忽略为null或为空的字符串

再比如,Mapster 只能忽略 null 值 (IgnoreNullValues),但是你可以使用 Fork 来忽略 null 或空值。

TypeAdapterConfig<ParentPoco, ParentDto>.NewConfig()
    .Fork(config => config.ForType<string, string>()
        .MapToTargetWith((src, dest) => string.IsNullOrEmpty(src) ? dest : src)
    );
内容来源于网络如有侵权请私信删除

文章来源: 博客园

原文链接: https://www.cnblogs.com/staneee/p/14913643.html

你还没有登录,请先登录注册
  • 还没有人评论,欢迎说说您的想法!

相关课程