前序前段时间由于项目需要用到MongoDB,但是MongoDB不建议Collection join 查询,网上很多例子查询都是基于linq 进行关联查询 。但是在stackoverflow找到一个例子,程序员的朋友们请善于利用goole搜索 。主要介绍一个查询角色的所有用户的例子 。MongoDB创建Collection 和准备数据,请自行处理 。
1. 准备实体模型/// <summary>/// 用户实体(Collection)/// </summary>public class User{public Guid UserId { get; set; }public string UserName { get; set; }public string Password { get; set; }public bool IsDelete { get; set; }public DateTime CreateTime { get; set; }public Guid RoleId { get; set; }}/// <summary>/// 角色实体(Collection)/// </summary>public class Role{public Guid RoleId { get; set; }public string RoleName { get; set; }public DateTime CreateTime { get; set; }}/// <summary>/// 构建用户Dto(不在Mongo创建Collection)/// </summary>public class UserDto{public Guid UserId { get; set; }public string UserName { get; set; }public DateTime CreateTime { get; set; }public Guid RoleId { get; set; }public string RoleName { get; set; }}2 .连接配置和前置代码
var client = new MongoClient("xxx");var database = client.GetDatabase("xxx");3. 构建BsonDocumentProjectionDefinitionBsonDocumentProjectionDefinition<BsonDocument> projectionDefinition = new BsonDocumentProjectionDefinition<BsonDocument>(new BsonDocument("UserId", "$UserId").Add("UserName", "$UserName").Add("CreateTime", "$CreateTime").Add("RoleId", "$RoleId").Add("RoleName", new BsonDocument("$arrayElemAt", new BsonArray().Add("$Role.RoleName").Add(0))));4.利用 Lookup 进行关联Guid roleId = Guid.Empty;List<UserDto> list = database.GetCollection<BsonDocument>(typeof(User).Name).Aggregate()//过滤条件.Match(Builders<BsonDocument>.Filter.Eq("IsDelete", false)).Match(Builders<BsonDocument>.Filter.Eq("RoleId", roleId))//连接workflow.Lookup(typeof(Role).Name, "RoleId", "RoleId", typeof(UserDto).Name)//查询需要显示的列.Project(projectionDefinition).As<UserDto>().ToList();第一次写博客 , 各位大佬请指教 。
【.net core -利用 BsonDocumentProjectionDefinition 和Lookup 进行 join 关联 MongoDB 查询】
推荐阅读
- .net lambda表达式合并
- .NET Core C#系列之XiaoFeng.Threading.JobScheduler作业调度
- 【番外篇】Rust环境搭建+基础开发入门+Rust与.NET6、C++的基础运算性能比较
- Windows版 PostgreSQL 利用 pg_upgrade 进行大版升级操作
- .NET周报【10月第2期 2022-10-17】
- 路由器cpu利用率100%怎么办(路由器cpu太高怎么解决)
- ubuntu20.04 利用xrandr命令修改多显示器分辨率
- 聊一聊被 .NET程序员 遗忘的 COM 组件
- 细聊.Net Core中IServiceScope的工作方式
- asp.net core web 解决方案多项目模板制作打包总结