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.

I have Article class with property

private IList<Tag> _tags;
public virtual IList<Tag> Tags
{
get{
if(_tags == null)
  _tags = TagService.GetTags(this);
return _tags;
}
}

Since there is no SET for Tags automapper will not set tags when mapping from viewmodel to view. Any ideas?

share|improve this question

2 Answers

up vote 4 down vote accepted

Try using the UseDestinationValue option:

ForMember(dest => dest.Tags, opt => opt.UseDestinationValue());

In the latest DLL on the trunk, AutoMapper should pick up readonly list-type members.

share|improve this answer

You can Ignore then property using:

ForMember(dest => dest.Tags, opt => opt.Ignore());
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.