У меня есть некоторые проблемы с 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 Class:
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; }
}