Browse Source
Merge pull request #920 from colinin/fix-error
fix(platform): 修复批改造成的编译错误.
pull/924/head
yx lin
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
2 additions and
2 deletions
-
aspnet-core/modules/platform/LINGYUN.Platform.Application/LINGYUN/Platform/Layouts/LayoutAppService.cs
-
aspnet-core/modules/platform/LINGYUN.Platform.EntityFrameworkCore/LINGYUN/Platform/Menus/EfCoreMenuRepository.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, |
|
|
|
|
|
|
|
@ -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)); |
|
|
|
} |
|
|
|
|
|
|
|
|