[非專業翻譯] 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)
);