gpt4 book ai didi

c# - Automapper 从外部类映射到内部类变量

转载 作者:行者123 更新时间:2023-11-30 23:08:28 25 4
gpt4 key购买 nike

我正在使用 Automapper 并且需要知道我是否可以将源变量映射到嵌套成员变量?

这是我要映射的来源

public class source
{
public string name;
}

这是目的地 - 我需要分配给 Nested.Name 成员的名称变量

public class Destination
{
public Nested info;
}

public class Nested
{
public string name;
}

非常感谢任何帮助。罗恩。

最佳答案

ForPath 就可以了

CreateMap<source, Destination>()
.ForPath(d => d.info.name, c => c.MapFrom(src => src.name));

关于c# - Automapper 从外部类映射到内部类变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46507335/

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