假设我有一系列形成聚合的对象。
public class C{
public string Details {get;set;}
}
public class B{
public string Details {get;set;}
public List<C> Items {get;set;}
}
public class A{
public long ID {get;set;}
public string Details {get;set;}
public List<B> Items {get;set;}
}
使用Dapper,从数据库中的表中填充这些内容的最佳方法是什么(在我的情况下,它是postgres,但这不重要)。示例中的表几乎是一对一的对象模型。类的Items属性,表示与每个从属对象的外键关系。即3个表,A与B具有一对多关系,B与C具有一对多的关系。
因此,对于A的给定ID,我希望我的对象也能拥有所有子数据。
我最好的猜测是我应该以某种方式使用QueryMultiple,但我不确定如何做到最好。
答案 0 :(得分:11)
我认为我在这里提出的帮助:Multi-Mapper to create object hierarchy可能会有所帮助。
var mapped = cnn.QueryMultiple(sql)
.Map<A,B,A>
(
A => A.ID,
B => B.AID,
a, bees => { A.Items = bees};
);
假设您使用mapper扩展GridReader:
public static IEnumerable<TFirst> Map<TFirst, TSecond, TKey>
(
this GridReader reader,
Func<TFirst, TKey> firstKey,
Func<TSecond, TKey> secondKey,
Action<TFirst, IEnumerable<TSecond>> addChildren
)
{
var first = reader.Read<TFirst>().ToList();
var childMap = reader
.Read<TSecond>()
.GroupBy(s => secondKey(s))
.ToDictionary(g => g.Key, g => g.AsEnumerable());
foreach (var item in first)
{
IEnumerable<TSecond> children;
if(childMap.TryGetValue(firstKey(item), out children))
{
addChildren(item,children);
}
}
return first;
}
您可以扩展此模式以使用3级层次结构。