gpt4 book ai didi

C# Automapper 映射字典属性

转载 作者:太空狗 更新时间:2023-10-30 01:17:45 24 4
gpt4 key购买 nike

我正在努力弄清楚如何根据字典对象中的键映射一个值。

这是我目前所拥有的:

.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 以合成事件对象的“提交者”属性

谢谢! :)

最佳答案

你应该能够让映射器像这样从字典中设置特定的值:

.ForMember(dest => dest.Submitter,
opts => opts.MapFrom(src => src.opened_by["value"]))

关于C# Automapper 映射字典属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30670271/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com