0
에서 매핑하는 데 문제가 있습니다.자동 매핑 복잡한 구조
라인 위에 주석File thisFile = repository.FindAll(x => x.FileId == fileId).SingleOrDefault();
//thisFile.FileContacts[x].Contact.Persons[n].FirstName;
은 사용자의 인 firstName 프로퍼티
에 대한 경로를 도시
public class FileSummary
public List<PersonSummary> Contacts {get;set;}
public class PersonSummary
public string FirstName {get; set;}
이
Mapper.CreateMap<File, FileSummary>().ForMember(x => x.Contacts, opt => opt.MapFrom(src => src.FileContacts));
너무 잘 작동하지 않습니다.
FileSummary 및 연락처가 무엇인지 이해하지 못하고 있습니다. 어떻게 거기에있는 첫 번째 코드 샘플과 관련이 있습니까? – peter
@peter, 편집 – griegs