如何使用AutoMapper映射复杂类型?

时间:2018-11-30 12:05:25

标签: c# entity-framework automapper

我在使用AutoMapper时遇到一些问题。有人可以为我解释如何创建地图吗? 不要担心很多代码块。这是非常简单的逻辑,我只是​​不明白映射器是如何工作的...谢谢您的帮助。 AutoMapperConfig:

  private void MappingApiInputSubscription(IMapperConfigurationExpression expression)
    {
        expression.CreateMap<ApiInputSubscription, Subscription>()
            .ForMember(
                dest => dest.SearchRequest,
                opt => opt.MapFrom(src =>src.SearchRequest));
    }

ApiSearchRequest:

 public class ApiSearchRequest
{
    public string Text { get; set; }

    public int? CategoryId { get; set; }

    public bool PriceRequired { get; set; }

    public int? MinPrice { get; set; }

    public int? MaxPrice { get; set; }

    public int? CurrencyId { get; set; }

    public DateTime? PublishDateFrom { get; set; }

    public DateTime? PublishDateTo { get; set; }

    public DateTime? EventDateFrom { get; set; }

    public DateTime? EventDateTo { get; set; }

    public bool PhotoAttached { get; set; }

    public int? OwnerId { get; set; }

    public ICollection<int> Offices { get; set; }
}

我的ApiInputSubscription模型:

[Serializable]
public class ApiInputSubscription
{
    public string SubscriptionName { get; set; }
    public ApiSearchRequest SearchRequest { get; set; }
}

我的订阅模型:

 public class Subscription : ISubscription
{
    public int Id { get; set; }

    public int OwnerId { get; set; }

    public string SubscriptionName { get; set; }

    public SearchRequest SearchRequest { get; set; }

    public ISubscription WithOwner(IUser user)
    {
        user = user ?? throw new ArgumentNullException(nameof(user), "subscription owner can't be null!");
        var clone = (Subscription)MemberwiseClone();
        clone.OwnerId = user.Id;
        return clone;
    }
}

SearchRequest类:

public class SearchRequest : ISearchRequest
{
    public string Text { get; set; }

    public int? CategoryId { get; set; }

    public bool PriceRequired { get; set; }

    public int? MinPrice { get; set; }

    public int? MaxPrice { get; set; }

    public int? CurrencyId { get; set; }

    public DateTime? PublishDateFrom { get; set; }

    public DateTime? PublishDateTo { get; set; }

    public bool EventDateRequired { get; set; }

    public DateTime? EventDateFrom { get; set; }

    public DateTime? EventDateTo { get; set; }

    public bool PhotoAttached { get; set; }

    public int PostsOnPage { get; set; } = 10;

    public PostStatus Status { get; set; }

    public SortPostsBy SortPostsOrder { get; set; }

    public bool OnlyInappropriate { get; set; }

    public int? OwnerId { get; set; }

    public int Skip { get; set; }

    public ICollection<int> Offices { get; set; }
}

1 个答案:

答案 0 :(得分:0)

您首先需要告诉AutoMapper如何将ApiSearchRequest映射到SearchRequest,其次要忽略所有其他属性:

private void MappingApiInputSubscription(IMapperConfigurationExpression expression)
{
    expression.CreateMap<ApiSearchRequest, SearchRequest>()
       // add other properties as required
      .ForMember(dest => dest.PostsOnPage, opt => opt.Ignore());

    expression.CreateMap<ApiInputSubscription, Subscription>()
        .ForMember(
            dest => dest.SearchRequest,
            opt => opt.MapFrom(src => src.SearchRequest))
        .ForAllOtherMembers(dest => dest.Ignore());
}
相关问题