我有以下代码一直在 Automapper v3 中工作,但不再在 v5 中工作。 更新它也适用于 v4。
CallScheduleProfile
在其构造函数中将Title
属性设置为将值传递true
给它的类的实例。
CallScheduleProfileViewModel
在其构造函数中,将属性设置为传递andTitle
值的不同类的实例。true
"Title"
我已经在 AutoMapper 中为所有 4 个类设置了映射,然后我调用了 Map。
结果是地图之后的Title
属性CallScheduleProfileViewModel
有一个布尔值true
但FriendlyName
为空,即使它是在其构造函数中设置的。
我相信正在发生的事情是,构造函数 onCallScheduleProfileViewModel
被调用并被FriendlyName
分配,但是当映射发生时,它调用构造函数Entry
,然后映射UxEntry
存在的任何属性并将其分配给Title
属性,默认情况下FriendlyName
将为 null,因为FriendlyName
不存在UxEntry
其值的不被复制。
我的假设可能是错误的,但无论哪种方式,我如何FriendlyName
在映射中填充?
更新:我查看了有关嵌套类型的 Automapper文档,并且文档中提供的代码也存在问题。InnerDest
如果我在OuterDest
构造函数中添加一个字符串属性并在Map
其值为空之后设置其值。
public static void Main(string[] args)
{
Mapper.Initialize(cfg =>
{
cfg.CreateMap<UxEntry<bool>, Entry<bool>>();
cfg.CreateMap<CallScheduleProfile, CallScheduleProfileViewModel>();
});
var old = new CallScheduleProfile();
var newmodel = Mapper.Map<CallScheduleProfile, CallScheduleProfileViewModel>(old);
Console.WriteLine(newmodel.Title.Value);
Console.WriteLine(newmodel.Title.FriendlyName);
}
public class UxEntry<T>
{
public static implicit operator T(UxEntry<T> o)
{
return o.Value;
}
public UxEntry()
{
this.Value = default(T);
}
public UxEntry(T value)
{
this.Value = value;
}
public T Value { get; set; }
}
public class CallScheduleProfile
{
public CallScheduleProfile()
{
this.Title = new UxEntry<bool>(true);
}
public UxEntry<bool> Title { get; set; }
}
public class Entry<T>
{
public Entry()
{
}
public Entry(T value, string friendlyName)
{
this.Value = value;
this.FriendlyName = friendlyName;
}
public T Value { get; set; }
public string FriendlyName { get; set; }
public static implicit operator T(Entry<T> o)
{
return o.Value;
}
}
public class CallScheduleProfileViewModel
{
public CallScheduleProfileViewModel()
{
this.Title = new Entry<bool>(true, "Title");
}
public Entry<bool> Title { get; set; }
}