Browse Source

fix(platform): 修复批改造成的编译错误.

pull/920/head
colin 2 years ago
parent
commit
ee9f2ff0cf
  1. 2
      aspnet-core/modules/platform/LINGYUN.Platform.Application/LINGYUN/Platform/Layouts/LayoutAppService.cs
  2. 2
      aspnet-core/modules/platform/LINGYUN.Platform.EntityFrameworkCore/LINGYUN/Platform/Menus/EfCoreMenuRepository.cs

2
aspnet-core/modules/platform/LINGYUN.Platform.Application/LINGYUN/Platform/Layouts/LayoutAppService.cs

@ -80,7 +80,7 @@ namespace LINGYUN.Platform.Layouts
var layouts = await LayoutRepository.GetPagedListAsync(
input.Framework, input.Filter,
input.Sorting, input.Reverse, false,
input.Sorting, false,
input.SkipCount, input.MaxResultCount);
return new PagedResultDto<LayoutDto>(count,

2
aspnet-core/modules/platform/LINGYUN.Platform.EntityFrameworkCore/LINGYUN/Platform/Menus/EfCoreMenuRepository.cs

@ -183,7 +183,7 @@ namespace LINGYUN.Platform.Menus
menu.Path.Contains(filter) || menu.Name.Contains(filter) ||
menu.DisplayName.Contains(filter) || menu.Description.Contains(filter) ||
menu.Redirect.Contains(filter))
.rting)
.OrderBy(sorting)
.ToListAsync(GetCancellationToken(cancellationToken));
}

Loading…
Cancel
Save