tnblog
首页
视频
资源
登录

ABP GroupBy的一些用法

4869人阅读 2022/4/8 11:31 总访问:1595910 评论:0 收藏:0 手机
分类: ABP

GroupBy可根据单个字段、和对象筛选,它返回的是 IGrouping<out TKey, out TElement>
IGrouping的相关链接  https://www.itranslater.com/qa/details/2125804226692514816

如果要用多个字段筛选,可用GroupBy().GroupBy()....GroupBy(),每多一个GroupBy列表的深度就会多一层
注意巧妙运用:FirstOrDefaultAsync()、FirstOrDefault()、First(),主要用于去掉列表的深度(如:List的深度)

如1:

  1. ////货主的新老司机信息
  2.                     //var CargoAndDrivers = await _CargoAndDriverRepository.GetAll().Where(_ => _.DriverId == OldDriverId || _.DriverId == NewDriverId).AsNoTracking().ToListAsync();
  3.                     ////重叠的数据
  4.                     var query = CargoAndDrivers.GroupBy(x => x.TenantId).Where(g => g.Count() > 1).ToList();
  5.                     //货主新老司机重复的数据
  6.                     var query2 = await _CargoAndDriverRepository.GetAll()
  7.                         .Where(_ => _.DriverId == OldDriverId || _.DriverId == NewDriverId)
  8.                         .GroupBy(x => x.TenantId)
  9.                         .Where(g => g.Count() > 1)//主要作用是有重复的对象就输出
  10.                         .AsNoTracking().ToListAsync();

如2:

其实GroupBy之后的Select()里面的条件除了a.key是关于IGrouping的key外,其它的应该都是关于value的条件,即a对象的EF表达式

  1.                     //查寻车辆的重叠的普通查询
  2.                     var Vehers = _VehicleAndDriverRepository.GetAll()
  3.                         .Where(_ => TheSameOldCargoAndDriverIds.Contains(_.CargoAndDriverId) || TheSameNewCargoAndDriverIds.Contains(_.CargoAndDriverId))
  4.                         .GroupBy(x => x.VehicleId)
  5.                         .Where(p => p.Count() > 1)
  6.                         /*其实Select里面的条件除了a.key是关于IGrouping的key外,其它的应该都是关于value的条件,即a对象
  7.                         的EF表达式*/
  8.                         .Select(a => a.Where(_ => TheSameNewCargoAndDriverIds.Contains(_.CargoAndDriverId)))
  9.                         .FirstOrDefault()
  10.                         .Select(a => a.Id).ToList();

如3:

  1.  //查寻车辆的重叠的异步查询
  2.                     var CargoAndDriverIds = await _VehicleAndDriverRepository.GetAll().AsNoTracking()
  3.                         .Where(_ => TheSameOldCargoAndDriverIds.Contains(_.CargoAndDriverId) || TheSameNewCargoAndDriverIds.Contains(_.CargoAndDriverId))
  4.                         .GroupBy(x => x.VehicleId)
  5.                         .Where(p => p.Count() > 1)
  6.                         .Select(a => a.Where(_ => TheSameNewCargoAndDriverIds.Contains(_.CargoAndDriverId)).Select(b => b.Id))
  7.                         .FirstOrDefaultAsync();

案例:数据的复合,即查找重复的数据,并覆盖

  1. /// <summary>
  2.         /// 新、老司机的数据复合3
  3.         /// </summary>
  4.         /// <param name="OldDriverUserId">旧的司机用户id</param>
  5.         /// <param name="OldDriverId">旧的司机id</param>
  6.         /// <param name="NewDriverId">新的司机id</param>
  7.         /// <returns>重叠部分删除新的司机,原因:旧的数据只需要修改,重叠的数据只能存在一份,但是优先保留旧的数据</returns>
  8.         public async Task DataComposition3(long OldDriverUserId, Guid OldDriverId, Guid NewDriverId)
  9.         {
  10.             try
  11.             {
  12.                 ////其它数据、如运单
  13.                 await _BusinessAppService.UpdateWayBillForDriver(NewDriverId, OldDriverId);
  14.                 //删除旧的实名司机
  15.                 await _DriverRepository.DeleteAsync(_ => _.Id == OldDriverId);
  16.                 //删除司机的用户
  17.                 await _userRepository.DeleteAsync(_ => _.Id == OldDriverUserId);
  18.                 //删除司机的用户、司机附件
  19.                 await _FileInfoRepository.DeleteAsync(_ => _.BusinessId == OldDriverId.ToString() || _.BusinessId == OldDriverUserId.ToString());
  20.                 using (_IUnitOfWorkRepository.Current.DisableFilter(AbpDataFilters.MayHaveTenant, AbpDataFilters.MustHaveTenant))//禁用MayHaveTenant过滤
  21.                 {
  22.                     //货主新老司机重复的数据
  23.                     var query2 = await _CargoAndDriverRepository.GetAll()
  24.                         .Where(_ => _.DriverId == OldDriverId || _.DriverId == NewDriverId)
  25.                         .GroupBy(x => x.TenantId)
  26.                         .Where(g => g.Count() > 1)
  27.                         .AsNoTracking().ToListAsync();
  28.                     if (query2.Count() == 0)
  29.                     {
  30.                         return;
  31.                     }
  32.                     //重叠的新、旧货主司机
  33.                     var TheSameOldCargoAndDrivers = query2.Select(a => a.Where(_ => _.DriverId == OldDriverId)).FirstOrDefault();
  34.                     if (TheSameOldCargoAndDrivers.Count() == 0)
  35.                     {
  36.                         return;
  37.                     }
  38.                     var TheSameNewCargoAndDrivers = query2.Select(a => a.Where(_ => _.DriverId == NewDriverId)).FirstOrDefault();
  39.                     //id
  40.                     var TheSameOldCargoAndDriverIds = TheSameOldCargoAndDrivers.Select(_ => _.Id);
  41.                     var TheSameNewCargoAndDriverIds = TheSameNewCargoAndDrivers.Select(_ => _.Id);
  42.                     //需要删除的新司机
  43.                     await _CargoAndDriverRepository.DeleteAsync(_ => TheSameNewCargoAndDriverIds.Contains(_.Id));
  44.                     //查寻车辆的重叠的异步查询
  45.                     var CargoAndDriverIds = await _VehicleAndDriverRepository.GetAll().AsNoTracking()
  46.                         .Where(_ => TheSameOldCargoAndDriverIds.Contains(_.CargoAndDriverId) || TheSameNewCargoAndDriverIds.Contains(_.CargoAndDriverId))
  47.                         .GroupBy(x => x.VehicleId)
  48.                         .Where(p => p.Count() > 1)
  49.                         .Select(a => a.Where(_ => TheSameNewCargoAndDriverIds.Contains(_.CargoAndDriverId)).Select(b => b.Id))
  50.                         .FirstOrDefaultAsync();
  51.                     //得到需要删除的车辆与司机关系的id
  52.                     await _VehicleAndDriverRepository.DeleteAsync(_ => CargoAndDriverIds.Contains(_.Id));
  53.                     //把以前司机的车辆修改为现在司机的车辆
  54.                     await _VehicleRepository.BatchUpdateAsync(p => new Vehicle
  55.                     { DriverId = NewDriverId }, p => p.DriverId == OldDriverId);
  56.                     //把以前司机的车辆修改为现在司机的车辆
  57.                     await _CargoAndDriverRepository.BatchUpdateAsync(p => new CargoAndDriver
  58.                     { DriverId = NewDriverId }, p => p.DriverId == OldDriverId);
  59.                     return;
  60.                 }
  61.             }
  62.             catch (Exception ex)
  63.             {
  64.                 throw new UserFriendlyException(ex.Message);
  65.             }
  66.         }


评价
没有个性,不需要签名
排名
4
文章
473
粉丝
3
评论
2
ICP备案 :渝ICP备18016597号-1
网站信息:2018-2025TNBLOG.NET
技术交流:群号656732739
联系我们:contact@tnblog.net
公网安备:50010702506256
欢迎加群交流技术