让我举两个类的简化示例:
public class Consumable { public int ConsumableID { get; set; } public string Description { get; set; } public int SaleDepartmentID { get; set; }}public class SaleDepartment { public int SaleDepartmentID { get; set; } public string Description { get; set; }}
这两个实体存储了SaleDepartment的ID,但是没有将SaleDepartment链接到Consumable的外键(我不希望它作为键),但SaleDepartment在SaleDepartmentID上有PrimaryKey
现在我的DTO看起来非常相似
public class ConsumableDTO { public int ConsumableID { get; set; } public string Description { get; set; } public int SaleDepartmentID { get; set; }}
这是映射
Mapper.CreateMap<Consumable,ConsumableDTO>().ReverseMap();
因此,每当我带来一个消耗品DTO集合时,我也想带上相关的SaleDepartment的描述,
如果有导航属性我会做这样的事情
Mapper.Map<ObservableCollection<Consumable>>(context.Consumable.Project().To<ConsumableDTO>());
但是因为这样的密钥不存在,我如何告诉自动化程序根据我拥有的这些ID进行内连接?
我花了两天时间找到了一种方法,但是我不相信这是正确的方法,我想知道我是否错过了一个技巧,并且有更简单或更好的方法来实现这一点.
这就是我获得相关记录的方式
var foo = new ObservableCollection<Consumable>( (from c in context.Consumable.Project().To<ConsumableDTO>() join sd in context.SaleDepartment on c.SaleDepartmentID equals sd.SaleDepartmentID select new { consumable = c,SaleDepartmentDescription = sd.Description }).ToList() .Select(p => Mapper.Map<ConsumableDTO,Consumable>(p.consumable,new Consumable() { SaleDepartmentDescription = p.SaleDepartmentDescription })));
所以,这将抓取或消费,然后内部加入saledeparments并选择内部联接的描述形式,但似乎很少的步骤,是否有一种更简单的方式来告诉自动播放器,根据这个匹配的ID获取相关记录?
感谢您的关注和时间.
解决方法 首先,我假设你的DTO意在包含公共字符串SaleDepartmentDescription {get;组;如你的问题引用它但它实际上并不存在.如果您不使用EF迁移(这是一个公平的假设,否则您只需添加外键!),那么您可以通过在实体中添加密钥来实现这一点 – 实际上不需要在数据库中为密钥提供密钥加入他们,这只是告诉EF假装他们是. (如果您正在使用EF迁移,则此方法将不起作用,因为它将要将密钥添加到数据库.)
public class Consumable { public int ConsumableID { get; set; } public string Description { get; set; } public int SaleDepartmentID { get; set; } [ForeignKey("SaleDepartmentID")] public virtual SaleDepartment SaleDepartment { get; set; }}
假设您的DTO确实包含字符串属性SaleDepartmentDescription,那么autoMapper将自动处理此问题,但您应该使用ProjectTo来进行更有效的数据库查询:
var mappedDTOs = context.Consumable.ProjectTo<ConsumableDTO>().ToList();总结
以上是内存溢出为你收集整理的c# – 如何让Automapper通过Id字段上的内连接获取相关记录,而不是外键?全部内容,希望文章能够帮你解决c# – 如何让Automapper通过Id字段上的内连接获取相关记录,而不是外键?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)