Mapping one to many with Dapper(使用Dapper实现一对多映射)
本文介绍了使用Dapper实现一对多映射的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
试图弄清楚这一点,但我不能让它起作用。此查询:
select MultiCollections.*, Collections.* from MultiCollections
left join MultiCollectionCollections on MultiCollections.Id = MultiCollectionCollections.MultiCollectionId
left join Collections on MultiCollectionCollections.CollectionId = Collections.Id
where MultiCollections.UserId=5
这将返回以下数据:
如您所见,第1行和第2行来自同一个标题。它们背后的数据是书籍。 第3行和第4行也是集合,但没有书。
我的代码中有两个对象: 多集合 集合
两者都与查询结果中给出的数据相对应: ID、UserID和TITLE用于对象多集合。其他数据用于对象集合。 我希望在我的C#代码中看到三个多集合: 动作 话剧 小说操作将有2个集合。戏剧和虚构应该为空。
相反,我得到了4个多集合,其中没有一个包含集合。我的C#代码:
public IEnumerable<MultiCollection> GetAll(int userId)
{
string query = @"select MC.*, C.* from MultiCollections MC
left join MultiCollectionCollections MCC on MC.Id = MCC.MultiCollectionId
left join Collections C on MCC.CollectionId = C.Id
where UserId=" + userId;
using (DbConnection connection = ConnectionFactory())
{
connection.Open();
return connection.Query<MultiCollection, List<Collection>, MultiCollection>(query,
(a, s) =>
{
a.Collections = s;
return a;
});
}
}
运行代码时,我预期如下:
Action
Collections
-> Book 1
-> Book 2
Drama
Collections
Null
Fiction
Collections
Null
我不知道我做错了什么。
推荐答案
您的C#代码应该如下所示:
public IEnumerable<MultiCollection> GetAll(int userId)
{
string query = @"select MC.*, C.* from MultiCollections MC
left join MultiCollectionCollections MCC on MC.Id = MCC.MultiCollectionId
left join Collections C on MCC.CollectionId = C.Id
where UserId = @userId;";
using (DbConnection connection = ConnectionFactory())
{
connection.Open();
return connection.Query<MultiCollection, Collection, MultiCollection>(query,
(a, s) =>
{
a.Collections = new List<Collection>();
a.Collections.Add(s);
return a;
},
param: new { userId },
splitOn: "MultiCollectionId,CollectionId");
}
}
请注意,.Query<MultiCollection, Collection, MultiCollection>
是Collection
而不是List<Collection>
,它正在执行.add()
而不是setter。
这篇关于使用Dapper实现一对多映射的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:使用Dapper实现一对多映射
基础教程推荐
猜你喜欢
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- rabbitmq 的 REST API 2022-01-01
- MS Visual Studio .NET 的替代品 2022-01-01
- SSE 浮点算术是否可重现? 2022-01-01
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- c# Math.Sqrt 实现 2022-01-01
- 将 XML 转换为通用列表 2022-01-01
- 如何激活MC67中的红灯 2022-01-01