Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

iwant to map collection of model to viewmodel with automapper this is my code

public class LanguageViewModel
    {
        public string Name { get; set; }
        public IList<Word> Categories { set; get; }
        public IList<string> PictureURL { set; get; }
    }

and this my model

public class Word : BaseFieldsTables
{
    public string Text { get; set; }
    public virtual Category Category { get; set; }
    public int CategoryID { get; set; }
    public virtual Language Language { get; set; }
    public int LanguageID { get; set; }

    public virtual ICollection<Picture> Pictures { get; set; }

    [InverseProperty("MainWord")]
    public virtual ICollection<RelationshipBetweenWords> MainWords { get; set; }

    [InverseProperty("RelatedWord")]
    public virtual ICollection<RelationshipBetweenWords> RelatedWords { get; set; }
}
share|improve this question
Could you clarify desired mapping? Something like Word.Language.Name -> LanguageViewModel.Name – k0stya Jun 27 '12 at 15:19
@Mohammad, did you tried my answer? – ElYusubov Jan 18 at 13:28

1 Answer

Fot his example you start with top domain model and map it with inner collections called Nested mappings.

mapper.CreateMap<Word , LanguageViewModel>()                
    .ForMember(dest => dest.Name, src => src.MapFrom(s => s.Text));

For inner collections within Word domain model, you need to define separate mappings for Categories and Pictures.

mapper.CreateMap<Picture, PictureModel>()                
   .ForMember(dest => dest.PictureURL , src => src.MapFrom(x => x.Picture.Urltext));

mapper.CreateMap<Category, CategoryModel>()                
   .ForMember(dest => dest.CategoryId, src => src.MapFrom(x => x.Category.CategoryInt));

and for all remaining inner collections you need to define mapping to make it work

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.