mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-09-21 02:57:54 +08:00
fix issue #I3YVBH 兼容oracle 11g
add load all users/roles for flowinstance fix issue #I3W5YR
This commit is contained in:
@@ -43,7 +43,7 @@ namespace OpenAuth.App
|
||||
objs = objs.Where(u => u.ToStatus == request.Status);
|
||||
}
|
||||
|
||||
result.data = objs.OrderBy(u => u.Id)
|
||||
result.data = objs.OrderByDescending(u => u.CreateTime)
|
||||
.Skip((request.page - 1) * request.limit)
|
||||
.Take(request.limit);
|
||||
result.count = objs.Count();
|
||||
|
Reference in New Issue
Block a user