我正在尝试使用AutoMapper将EF实体映射到我的服务模型,但是在发生映射时出现错误。
例如:
服务模型类:
public class User
{
public Guid UserId {get; set;}
public string Name {get; set;}
public Company Company {get; set;}
}
public class Company
{
public Guid CompanyId {get; set;}
public string Name {get; set;}
public ICollection<User> Users {get; set;}
}
实体模型类:
public class UserData
{
public Guid Id {get;set;}
public string Name {get; set;}
public Guid CompanyId CompanyId {get; set;}
public virtual Company Company {get; set;}
}
public class CompanyData
{
public Guid Id {get; set;}
public string Name {get; set;}
public virtual ICollection<UserData> Users {get; set;}
}
AutoMapper配置文件
用户映射
this.CreateMap<Data.Entities.UserData, Services.Models.User>()
.ForMember(u=>u.UserId, opt=>opt.MapFrom(u=>u.Id))
.ForMember(u=>u.Company, opt=>opt.MapFrom(u=>u.Company));
公司映射
this.CreateMap<Data.Entities.CompanyData, Services.Models.Company>()
.ForMember(o => o.CompanyId, opt => opt.MapFrom(o => o.Id))
.ForMember(o => o.Users, opt => opt.MapFrom(o => o.Users));
我收到以下错误:
AutoMapper.AutoMapperMappingException: 'Error mapping types.'
TypeLoadException: Method 'Add' in type
'Proxy_System.Collections.Generic.ICollection`1
[[MyCompany.Services.Models.User, MyCompany.Services, Version=1.0.0.0,
Culture=neutral, PublicKeyToken=null]]_19426640_' from assembly
'AutoMapper.Proxies, Version=0.0.0.0, Culture=neutral,
PublicKeyToken=be96cd2c38ef1005' does not have an implementation.
如果我从服务模型中删除了Users属性,因此当我尝试映射公司时,它不尝试映射用户,则可以正常工作。当我映射用户并返回公司详细信息时,这也很好用。
它显然与Users属性有关,但我不确定。
有人可以告诉我我在做什么错吗?
谢谢。
答案 0 :(得分:0)
我最终想出了问题,好问题!
在公司简介中,我对定义的某些部分进行了注释:
this.CreateMap<Data.Entities.Company, Models.Company>()
.ForMember(o => o.OrganizationId, opt => opt.MapFrom(o => o.Id));
//.ForMember(o => o.Users, opt =>
// opt.MapFrom((source,destination, member, context)=> source.Users != null ?
// context.Mapper.Map<ICollection<Models.User>>(source.Users) : null));
在我的用户个人资料中,我注释掉了定义的某些部分:
\\this.CreateMap<IEnumerable<Data.Entities.User>,
ICollection<Services.Models.User>>();
我知道这是与原始帖子不同的定义,这两个注释都未注释,产生了堆栈溢出,并注释了第一个或另一个引起了与我的原始问题相同的错误。
我开始考虑复杂的问题,这实际上使AutoMapper自行处理了所有问题!
这是我的个人资料定义的最终代码:
public CompanyProfile()
{
this.CreateMap<Data.Entities.Company, Models.Company>()
.ForMember(o => o.CompanyId, opt => opt.MapFrom(o => o.Id));
}
和
this.CreateMap<Data.Entities.User, Services.Models.User>()
.ForMember(u=>u.UserId, opt=>opt.MapFrom(u=>u.Id))
.ForMember(u=>u.Company, opt=>opt.MapFrom(u=>u.Company));
这会将EF中的公司详细信息加载到我的用户模型中,并将EF中的用户加载到公司模型中。
请注意,使用ICollection可以正常工作。
希望这会有所帮助!