简体   繁体   English

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

[英]How to map my complex type use AutoMapper?

I have some problems with AutoMapper. 我在使用AutoMapper时遇到一些问题。 Can someone explain for me how i should create map? 有人可以为我解释如何创建地图吗? Don't be afraid a lot of code blocks pls. 不要担心很多代码块。 It's very simple logic i just can't understand how mapper work... thank you for help. 这是非常简单的逻辑,我只是​​不明白映射器是如何工作的...谢谢您的帮助。 AutoMapperConfig: AutoMapperConfig:

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

ApiSearchRequest: 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; }
}

My ApiInputSubscription model : 我的ApiInputSubscription模型:

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

My Subscription model : 我的订阅模型:

 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 Class: 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; }
}

You need to tell AutoMapper firstly how to map ApiSearchRequest to SearchRequest and secondly to ignore all the other properties: 首先,您需要告诉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());
}

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

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