Условное сопоставление AutoMapper не работает с пропуском нулевых значений назначения
Ниже мои занятия
public class Student {
public long Id { get; set; }
public long? CollegeId { get; set; }
public StudentPersonal StudentPersonal { get; set; }
}
public class StudentPersonal {
public long? EthnicityId { get; set; }
public bool? GenderId { get; set; } // doesn't exist on UpdateModel, requires PropertyMap.SourceMember null check
}
public class UpdateModel{
public long Id { get; set; }
public long? CollegeId { get; set; }
public long? StudentPersonalEthnicityId { get; set; }
}
Ниже приведен конфиг AutoMapper
Mapper.Initialize(a => {
a.RecognizePrefixes("StudentPersonal");
}
Mapper.CreateMap<UpdateModel, StudentPersonal>()
.ForAllMembers(opt => opt.Condition(src => src.PropertyMap.SourceMember != null && src.SourceValue != null));
Mapper.CreateMap<UpdateModel, Student>()
.ForMember(dest => dest.StudentPersonal, opt => opt.MapFrom(src => Mapper.Map<StudentPersonal>(src)))
.ForAllMembers(opt => opt.Condition(src => src.PropertyMap.SourceMember != null && src.SourceValue != null));
И пример теста:
var updateModel = new StudentSignupUpdateModel();
updateModel.Id = 123;
updateModel.CollegeId = 456;
updateModel.StudentPersonalEthnicityId = 5;
var existingStudent = new Student();
existingStudent.Id = 123;
existingStudent.CollegeId = 777; // this gets updated
existingStudent.StudentPersonal = new StudentPersonal();
existingStudent.StudentPersonal.EthnicityId = null; // this stays null but shouldn't
Mapper.Map(updateModel, existingStudent);
Assert.AreEqual(777, existingStudent.CollegeId); // passes
Assert.AreEqual(5, existingStudent.StudentPersonal.EthnicityId); // does not pass
Кто-нибудь получил условное отображение для работы с префиксами? Он работает нормально на объекте без префикса.
1 ответ
Лямбда, к которой вы переходите opts.Condition
слишком ограничительно:
src => src.PropertyMap.SourceMember != null && src.SourceValue != null
В случае этого имущества, src.PropertyMap
является null
каждый раз (что можно ожидать, поскольку нет единственного свойства, которое сопоставляется с вложенным свойством назначения из исходного объекта).
Если вы удалите PropertyMap.SourceMember
проверь, твои тесты пройдут. Я не уверен, какое влияние это окажет на остальную часть вашего картирования.