我想从实体映射到模型
实体:
public class FileEntity
{
public IList<TagEntity> Tags { get; set; }
}
模型:
public class FileModel
{
public IList<TagModel> Tags { get; set; }
}
TagEntity 和 TagModel 中的字段都是一样的
我应该如何映射?
我想从实体映射到模型
实体:
public class FileEntity
{
public IList<TagEntity> Tags { get; set; }
}
模型:
public class FileModel
{
public IList<TagModel> Tags { get; set; }
}
TagEntity 和 TagModel 中的字段都是一样的
我应该如何映射?