0
我想從實體映射到如何使用AutoMapper字段?
實體模型:
public class FileEntity
{
public IList<TagEntity> Tags { get; set; }
}
型號:
public class FileModel
{
public IList<TagModel> Tags { get; set; }
}
在TagEntity和TagModel字段都是相同的
我應該如何映射器那?
你有什麼試過,你的automapper配置是怎樣的?你會得到異常或空值? 「TagEntity」和「TagModel」的外觀如何? – nemesv