|
@@ -13,6 +13,7 @@ using SqlKata;
|
|
using Datory;
|
|
using Datory;
|
|
using GxPress.Request.App.Middle;
|
|
using GxPress.Request.App.Middle;
|
|
using System;
|
|
using System;
|
|
|
|
+using System.Linq;
|
|
|
|
|
|
namespace GxPress.Repository.Implement
|
|
namespace GxPress.Repository.Implement
|
|
{
|
|
{
|
|
@@ -95,7 +96,30 @@ namespace GxPress.Repository.Implement
|
|
{
|
|
{
|
|
return await _repository.GetAllAsync(query);
|
|
return await _repository.GetAllAsync(query);
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+ /// <summary>
|
|
|
|
+ /// 递归获取父级下面的所有子集
|
|
|
|
+ /// </summary>
|
|
|
|
+ /// <param name="id"></param>
|
|
|
|
+ /// <param name="ids"></param>
|
|
|
|
+ /// <returns></returns>
|
|
|
|
+ public async Task<IEnumerable<int>> GetAllMiddleChildrenByParentIdAsync(List<int> ids, List<int> returnIds)
|
|
|
|
+ {
|
|
|
|
+ var middles = await _repository.GetAllAsync(Q.WhereIn(nameof(Entity.Middle.Middle.Id), ids));
|
|
|
|
+ if (middles == null || middles.Count == 0)
|
|
|
|
+ return returnIds;
|
|
|
|
+ foreach (var item in middles)
|
|
|
|
+ {
|
|
|
|
+ middles = await _repository.GetAllAsync(Q.Where(nameof(Entity.Middle.Middle.ParentId), item.Id));
|
|
|
|
+ if (middles == null || middles.Count == 0)
|
|
|
|
+ continue;
|
|
|
|
+ returnIds.AddRange(middles.Select(n => n.Id).ToList());
|
|
|
|
+ foreach (var middle in middles)
|
|
|
|
+ {
|
|
|
|
+ await GetAllMiddleChildrenByParentIdAsync(new List<int> { middle.Id }, returnIds);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ return returnIds;
|
|
|
|
+ }
|
|
public async Task<bool> DeleteAsync(Query query)
|
|
public async Task<bool> DeleteAsync(Query query)
|
|
{
|
|
{
|
|
return await _repository.DeleteAsync(query) > 0;
|
|
return await _repository.DeleteAsync(query) > 0;
|