Automapper 유형 맵 구성이 누락되었거나 지원되지 않는 매핑이 있습니까? 엔티티 모델 public partial class Categoies { public Categoies() { this.Posts = new HashSet(); } public int Id { get; set; } public string Name { get; set; } public string Description { get; set; } public Nullable PositionId { get; set; } public virtual CategoryPositions CategoryPositions { get; set; } public virtual ICollection Posts { get; set; } } 모델보기 p..