You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think you should write the code like this
var results = await queryable
.Skip((criterion.CurrentPage -1) * criterion.PageSize)
.Take(criterion.PageSize)
.Select(selector)
.ToListAsync();
The text was updated successfully, but these errors were encountered:
netcorekit/src/NetCoreKit.Infrastructure.EfCore/Extensions/RepositoryWithTypeExtensions.cs
Line 115 in 5f8a380
I think you should write the code like this
var results = await queryable
.Skip((criterion.CurrentPage -1) * criterion.PageSize)
.Take(criterion.PageSize)
.Select(selector)
.ToListAsync();
The text was updated successfully, but these errors were encountered: