Automapper IList - 方法实现中的主体签名和声明不匹配

发布于 2024-12-27 16:10:20 字数 1461 浏览 1 评论 0原文

我在应用程序层中定义了此映射:

public IList<ProfessionDTO> GetAllProfessions()
{
    IList<Profession> professions = _professionRepository.GetAll();
    Mapper.CreateMap<Profession, ProfessionDTO>();
    Mapper.CreateMap<IList<Profession>, IList<ProfessionDTO>>();
    IList<ProfessionDTO> professionsDto = Mapper.Map<IList<Profession>, IList<ProfessionDTO>>(professions);
    return professionsDto;
}

专业实体

 public class Profession
    {
        private int _id;
        private string _name;


        private Profession(){} // required by nHibernate

        public Profession(int id, string name)
        {
            ParameterValidator.NotNull(id, "id is required.");
            ParameterValidator.NotNull(name, "name is required.");
            _id = id;
            _name = name;
        }

        public string Name
        {
            get { return _name; }
        }

        public int Id
        {
            get { return _id; }
        }
    }

专业DTO:

public class ProfessionDTO
{
    public int Id { get; set; }
    public string Name { get; set; }
}

执行GetAllProfessions时,我收到此错误:

签名方法实现中的主体和声明不匹配。

知道为什么会发生这种情况吗?

我刚刚将所有 IList 更改为 List。我现在没有收到异常,但检索到的 27 个 Profession 实体的列表被映射到 ProfessionDTO 的 0。

I have this mapping defined in my Application Layer:

public IList<ProfessionDTO> GetAllProfessions()
{
    IList<Profession> professions = _professionRepository.GetAll();
    Mapper.CreateMap<Profession, ProfessionDTO>();
    Mapper.CreateMap<IList<Profession>, IList<ProfessionDTO>>();
    IList<ProfessionDTO> professionsDto = Mapper.Map<IList<Profession>, IList<ProfessionDTO>>(professions);
    return professionsDto;
}

Proffesion entity

 public class Profession
    {
        private int _id;
        private string _name;


        private Profession(){} // required by nHibernate

        public Profession(int id, string name)
        {
            ParameterValidator.NotNull(id, "id is required.");
            ParameterValidator.NotNull(name, "name is required.");
            _id = id;
            _name = name;
        }

        public string Name
        {
            get { return _name; }
        }

        public int Id
        {
            get { return _id; }
        }
    }

Profession DTO:

public class ProfessionDTO
{
    public int Id { get; set; }
    public string Name { get; set; }
}

When executing GetAllProfessions I get this error:

Signature of the body and declaration in a method implementation do not match.

Any idea why is it happening?

I have just changed all the IList to List. I don't get the exception now but the List of 27 entities of Profession that is retrieved is mapped to 0 of ProfessionDTO.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

面犯桃花 2025-01-03 16:10:20

我觉得回答自己的问题很愚蠢。

我不需要这一行:

Mapper.CreateMap<IList<Profession>, IList<ProfessionDTO>>();

现在 Auomaper 工作完美!

I feel silly answering my own question.

I don't need this line:

Mapper.CreateMap<IList<Profession>, IList<ProfessionDTO>>();

Now Auomapper works perfectly!

挽梦忆笙歌 2025-01-03 16:10:20

您的职业类别中没有 Id 和 Name 属性的设置器。

you don't have setters for your Id and Name attribute in your profession class.

清旖 2025-01-03 16:10:20

给出的答案似乎是错误的;
正确的应该是这样的;

Mapper.CreateMap<Profession, ProfessionDTO>();

The answer indicated seems wrong;
Correct one should be like;

Mapper.CreateMap<Profession, ProfessionDTO>();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文