Frage

This is what I have

Mapper.CreateMap<Domain.Code.CodeSection, EF.Code.CodeSection>().ForMember(dest => dest.Parent, opt => opt.MapFrom(src => src.Parent.Id));

This doesn't compile because src.Parent.Id is an Int and dest.Parent is an object.

All I want is to set dest.Parent to null.

Something like Mapper.CreateMap<Domain.Code.CodeSection, EF.Code.CodeSection>().ForMember(dest => dest.Parent, opt => opt.MapFrom(src => null));

War es hilfreich?

Lösung

MapFrom is used to connect properties - you want ResolveUsing:

Mapper.CreateMap<Domain.Code.CodeSection, EF.Code.CodeSection>()
      .ForMember(dest => dest.Parent, opt => opt.ResolveUsing(src => null));
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top