[非專業翻譯] Mapster - 建構函式對映
系列介紹
[非專業翻譯] 是對沒有中文文件進行翻譯的系列部落格,文章由機翻和譯者自己理解構成,和原文相比有所有不同,但意思基本一致。
因個人能力有限,如有謬誤之處還請指正,多多包涵。
正文
本文將說明 Mapster 如何配置建構函式對映
自定義目標物件建立
Mapster 預設例項化目標型別時,會使用目標型別的預設空建構函式例項化物件。
而使用 ConstructUsing
可以自定義例項化目標型別的實現:
// 使用非預設建構函式
TypeAdapterConfig<TSource, TDestination>.NewConfig()
.ConstructUsing(src => new TDestination(src.Id, src.Name));
// 使用物件初始化器
TypeAdapterConfig<TSource, TDestination>.NewConfig()
.ConstructUsing(src => new TDestination{Unmapped = "unmapped"});
對映到建構函式
Mapster 預設情況下只對映到欄位和屬性。可以通過 MapToConstructor
配置對映到建構函式:
// 全域性
TypeAdapterConfig.GlobalSettings.Default.MapToConstructor(true);
// 特定型別
TypeAdapterConfig<Poco, Dto>.NewConfig().MapToConstructor(true);
如果想要定義自定義對映,你需要使用 Pascal case:
class Poco {
public string Id { get; set; }
...
}
class Dto {
public Dto(string code, ...) {
...
}
}
TypeAdapterConfig<Poco, Dto>.NewConfig()
.MapToConstructor(true)
.Map('Code', 'Id'); //use Pascal case
如果一個類有多個建構函式,Mapster 將自動選擇滿足對映的最大數量的引數的建構函式:
class Poco {
public int Foo { get; set; }
public int Bar { get; set; }
}
class Dto {
public Dto(int foo) { ... }
public Dto(int foo, int bar) { ...} //<-- Mapster 將使用這個建構函式
public Dto(int foo, int bar, int baz) { ... }
}
或者也可以顯式地傳遞 ConstructorInfo 給 MapToConstructor
方法:
var ctor = typeof(Dto).GetConstructor(new[] { typeof(int), typeof(int) });
TypeAdapterConfig<Poco, Dto>.NewConfig()
.MapToConstructor(ctor);