gpt4 book ai didi

automapper - 我如何让 AutoMapper 对此进行映射?

转载 作者:行者123 更新时间:2023-12-04 00:30:49 28 4
gpt4 key购买 nike

假设我有这个类:

public class Account
{
public int AccountID { get; set; }
public Enterprise Enterprise { get; set; }
public List<User> UserList { get; set; }
}

当我使用 AutoMapper 映射 Account 类时,我还希望它映射 Enterprise 类,以及返回对象中的用户列表 (UserList)。我怎样才能让 AutoMapper 执行此操作?

谢谢!

最佳答案

如果您为企业和用户类型提供配置,AutoMapper 即开即用。

配置如下所示:

Mapper.CreateMap<Account, AccountDto>();
Mapper.CreateMap<Enterprise, EnterpriseDto>();
Mapper.CreateMap<User, UserDto>();

这显示了如何映射集合: http://automapper.codeplex.com/wikipage?title=Lists%20and%20Arrays&referringTitle=Home

关于automapper - 我如何让 AutoMapper 对此进行映射?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2444445/

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