我正在努力弄清楚如何根据Dictionary对象中的键映射值。
这是我到目前为止所做的:
.ForMember(dest => dest.Submitter,
opts => opts.MapFrom(src => src.opened_by))
注意:src.open_by是一个字典对象。我想按键搜索以获取映射到dest.Submitter
的值其他信息:
这是目标对象:
public class Incident
{
public int Active { get; set; }
public string Submitter { get; set; }
}
这是源对象:
Dictionary<string, string> opened_by = new Dictionary<string, string>
{
{ "link", "https://someurl/674bd1f96f03e10071c35e02be3ee4ae" },
{ "value", "674bd1f96f03e10071c35e02be3ee4ae" }
};
我的目标是从“值”键获取值674bd1f96f03e10071c35e02be3ee4ae以水合事件对象的“提交者”属性
谢谢! :)
答案 0 :(得分:4)
您应该能够让映射器从字典中设置特定值,如下所示:
.ForMember(dest => dest.Submitter,
opts => opts.MapFrom(src => src.opened_by["value"]))