PublicTypeLogic.cs 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. using System.Collections.Generic;
  2. using System.Linq;
  3. using CZFW.Framework.Logic;
  4. using CZKJ.GBRS2.Entity;
  5. using CZKJ.GBRS2.Interface;
  6. namespace CZKJ.GBRS2.Logic
  7. {
  8. public class PublicTypeLogic : LogicBase<PublicTypeEntity>, IPublicType
  9. {
  10. public IList<PublicTypeEntity> GetChildList(int? parentId)
  11. {
  12. var queryable = Queryable;
  13. if (parentId.HasValue)
  14. {
  15. queryable = queryable.Where(x => x.ParentId == parentId);
  16. }
  17. var typeList = new List<PublicTypeEntity>();
  18. typeList.AddRange(GetList(queryable.ToList()));
  19. return typeList;
  20. }
  21. IList<PublicTypeEntity> list = new List<PublicTypeEntity>();
  22. private IList<PublicTypeEntity> GetList(IList<PublicTypeEntity> typelist)
  23. {
  24. foreach (var item in typelist)
  25. {
  26. var count = Queryable.Count(x => x.ParentId == item.Id);
  27. if (count == 0)
  28. {
  29. list.Add(item);
  30. }
  31. else
  32. {
  33. GetList(Queryable.Where(x => x.ParentId == item.Id).ToList());
  34. }
  35. }
  36. return list;
  37. }
  38. public IList<PublicTypeEntity> GetParentList()
  39. {
  40. var list = Queryable.ToList();
  41. var typeList = new List<PublicTypeEntity>();
  42. foreach (var item in list)
  43. {
  44. var count = list.Count(x => x.ParentId == item.Id);
  45. if (count > 0)
  46. {
  47. typeList.Add(item);
  48. }
  49. }
  50. return typeList;
  51. }
  52. public IList<PublicTypeEntity> GetList(int? parentId, string keywords, int pageIndex, int pageSize, out int rowsCount)
  53. {
  54. var queryable = Queryable;
  55. if (parentId.HasValue)
  56. {
  57. queryable = queryable.Where(x => x.ParentId == parentId);
  58. }
  59. if (!string.IsNullOrWhiteSpace(keywords))
  60. {
  61. queryable = queryable.Where(x => x.Name.Contains(keywords));
  62. }
  63. rowsCount = queryable.Count();
  64. var result = from a in queryable
  65. join b in DbContext.Set<PublicTypeEntity>() on a.ParentId equals b.Id into temp
  66. from c in temp.DefaultIfEmpty()
  67. select new
  68. {
  69. Id = a.Id,
  70. Name = a.Name,
  71. Description = a.Description,
  72. ParentName = c == null ? "" : c.Name,
  73. SortOrder = a.SortOrder,
  74. ParentId = a.ParentId
  75. };
  76. return result.OrderByDescending(x => x.SortOrder).Skip((pageIndex - 1) * pageSize).Take(pageSize).ToList().Select(x => new PublicTypeEntity
  77. {
  78. Id = x.Id,
  79. Name = x.Name,
  80. ParentId = x.ParentId,
  81. Description = x.Description,
  82. ParentName = x.ParentName,
  83. SortOrder = x.SortOrder
  84. }).ToList();
  85. }
  86. }
  87. }