Automapper missing type map configuration or unsupported mapping - Error

前端 未结 12 1551
旧时难觅i
旧时难觅i 2020-11-27 16:25

Entity Model

public partial class Categoies
{
    public Categoies()
    {
        this.Posts = new HashSet();
    }

    public int Id { get; se         


        
12条回答
  •  误落风尘
    2020-11-27 16:57

    I was trying to map an IEnumerable to an object. This is way I got this error. Maybe it helps.

提交回复
热议问题