繁体   English   中英

Map 如何使用 AutoMapper EF Core 将多个相关实体连接到一个 DTO Object

[英]How Map Multiple related Entities to one DTO Object using AutoMapper EF Core

I have three related Entities in my blazor application Opportunity , AppUser and AssignedOpportunity , What I want to achieve is to map Opportunity and AppUser to a DTO Object ReturnAssignedOpportunityDTO which has similar fields as the entities, using AutoMapper , but am not sure how to do that , 下面是实体

 public partial class AssignedOpportunity
{
    [Key]
    [DatabaseGenerated(DatabaseGeneratedOption.Identity)]
    public int ID { get; set; }

    [ForeignKey("OpportunityID")]
    public string OpportunityID { get; set; }
    public string Status { get; set; }
    public Opportunity opportunity { get; set; }


    [ForeignKey("UserID")]
    public string UserID { get; set; }
    public AppUser User { get; set; }
}

机会

 public partial class Opportunity
{
    public Opportunity()
    {           
        AssignedOpportunities= new HashSet<AssignedOpportunity>();
    }
    [Key]
    public string ID { get; set; }
    public string OpportunityName { get; set; }
    public string Description { get; set; }
    public string CreatedBy { get; set; }
    public DateTime DateCreated { get; set; }
    public double EstimatedValue { get; set; }
    public string EmployeeNeed { get; set; }
    public double RealValue { get; set; }
    public string Location { get; set; }
    public string ReasonStatus { get; set; }
    public string Status { get; set; }
     public virtual ICollection<AssignedOpportunity> AssignedOpportunities { get; set; }
}

AppUser Class

 public partial class AppUser : IdentityUser
{
    public AppUser()
    {
        AssignedOpportunities = new HashSet<AssignedOpportunity>();
    }
    public string FirstName { get; set; }
    public string MiddleName { get; set; }
    public string LastName { get; set; }
    public string Gender { get; set; }
    public string Street { get; set; }
    public string City { get; set; }
    public string LGA { get; set; }
    public string State { get; set; }
    public virtual ICollection<AssignedOpportunity> AssignedOpportunities { get; set; }

}

这是我想要 map 的 DTO Object。

 public class ReturnOpportunitiesDTO
{
    public int ID { get; set; }
    public string OpportunityID { get; set; }
    public string OpportunityName { get; set; }
    public double EstimatedValue { get; set; }
    public string EmployeeNeed { get; set; }
    public double RealValue { get; set; }
    public string Location { get; set; }
    public string UserID { get; set; }
    public string UserFullName { get; set; }      
    public string Status { get; set; }
}

这是我获取记录的查询

 var result = await _context.AssignedOpportunities.Include(o => o.opportunity).
                ThenInclude(a => a.User).
                Where(a=>a.UserID==UserID.ToString()).ToListAsync();
            return result;

这就是我通常设置 Map 配置文件的方式

 public AssignArtisanProfile()
    {
        CreateMap<AssignedOpportunity, ReturnOpportunities>();
    }

但是由于我想 map 多个实体,我如何包含其他实体

您的方案只是展平复杂 object 的另一个示例。 您在子对象中有属性,您希望将其带到底层,同时仍利用 AutoMapper 映射功能。 如果只有在从分配的机会映射到 DTO 时,您可以重用来自应用程序用户和机会的其他映射......好吧,有一个名为IncludeMembers()的方法(请参阅文档)正是针对这种情况而存在的。 它允许您重用现有映射中子类型的配置:

config.CreateMap<AssignedOpportunity, ReturnOpportunitiesDTO>()
    .IncludeMembers(source => source.opportunity, source => source.User);
config.CreateMap<Opportunity, ReturnOpportunitiesDTO>();
config.CreateMap<AppUser, ReturnOpportunitiesDTO>()
    .ForMember(
        dest => dest.UserFullName,
        options => options.MapFrom(source =>
            string.Join(
                " ",
                source.FirstName,
                source.MiddleName,
                source.LastName)));

用法:

var mappedDtos = mapper.Map<List<ReturnOpportunitiesDTO>>(assignedOpportuniesFromDatabase);

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM