3
我有Article類財產AutoMapper與IList的<Item>
private IList<Tag> _tags;
public virtual IList<Tag> Tags
{
get{
if(_tags == null)
_tags = TagService.GetTags(this);
return _tags;
}
}
由於沒有SET從視圖模型查看映射時automapper不會將標籤標籤。有任何想法嗎?