简体   繁体   English

自动映射器中的多个映射如何

[英]how multiple map in automapper

I recently met with an automapper.我最近遇到了一个自动映射器。 I have a question, how i can map multiple objects from my repostiory in one DTO.我有一个问题,如何在一个 DTO 中映射来自我的存储库的多个对象。

public QuestionProfile()
{
    CreateMap<Question, GrammarQuestionDTO>()
        .ForMember(g => g.Question, q => q.MapFrom(source => source.Text)).ReverseMap();

    CreateMap<List<GrammarQuestionDTO>, TestDTO>()
        .ForMember(t => t.GrammarQuestion, g => g.MapFrom(source => source)).ReverseMap();

    CreateMap<Question, AuditionQuestionDTO>()
        .ForMember(a => a.Question, q => q.MapFrom(source => source.Text))
        .ForMember(a => a.Url, q => q.MapFrom(source => source.AudioFile.Url)).ReverseMap();

    CreateMap<List<AuditionQuestionDTO>, TestDTO>()
        .ForMember(t => t.AuditionQuestion, a => a.MapFrom(source => source)).ReverseMap();
}

how can I map all these 4 objects?如何映射所有这 4 个对象?

public async Task<TestDTO> GenerateTest(LevelType level)
{
    var grammarQuestions = await _questionRepository.GetGrammarQuestionAsync(level);
    var auditionQuestions = await _questionRepository.GetAuditionQuestionAsync(level);
    var essayTopic = await _questionRepository.GetEssayTopicAsync(level);
    var speakingTopic = await _questionRepository.GetSpeakingTopicAsync(level);

    var test = _mapper.Map<TestDTO>(grammarQuestions);
    test = _mapper.Map(test, auditionQuestions); //there will be a conversion error

    return _mapper.Map<TestDTO>(grammarQuestions);
}

You need to map it without list, just map it one to one and AutoMapper will handle the collections:您需要在没有列表的情况下映射它,只需将其一对一映射, AutoMapper将处理集合:

CreateMap<AuditionQuestionDTO, TestDTO>()
    .ForMember(t => t.AuditionQuestion,
               a => a.MapFrom(source => source.<PropertyName>)).ReverseMap();

And then on the map you should:然后在地图上你应该:

test = _mapper.Map<List<AuditionQuestionDTO>>(test, auditionQuestions);

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

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