UltimatePagination.EF
0.0.6
dotnet add package UltimatePagination.EF --version 0.0.6
NuGet\Install-Package UltimatePagination.EF -Version 0.0.6
<PackageReference Include="UltimatePagination.EF" Version="0.0.6" />
<PackageVersion Include="UltimatePagination.EF" Version="0.0.6" />
<PackageReference Include="UltimatePagination.EF" />
paket add UltimatePagination.EF --version 0.0.6
#r "nuget: UltimatePagination.EF, 0.0.6"
#:package UltimatePagination.EF@0.0.6
#addin nuget:?package=UltimatePagination.EF&version=0.0.6
#tool nuget:?package=UltimatePagination.EF&version=0.0.6
Ultimate Pagination for EF Core
Includes all the features from UltimatePagination
since this package has a reference to it.
Please check the README of the package for details.
Async Pagination with EF
With the reference to the package EF Core, the async pagination is supported.
You can use .PaginateAsync()
as follows:
queryable.PaginateAsync(pageNumber, pageSize, cancellationToken)
queryable.PaginateAsync(pageNumber, pageSize, converter, cancellationToken)
queryable.PaginateAsync(orderByKeySelectorExpression, descending, pageNumber, pageSize, cancellationToken)
queryable.PaginateAsync(orderByKeySelectorExpression, descending, pageNumber, pageSize, converter, cancellationToken)
queryable.PaginateAsync(pageNumber, pageSize, orderByKeySelectorExpression, descending, cancellationToken)
queryable.PaginateAsync(pageNumber, pageSize, orderByKeySelectorExpression, descending, converter, cancellationToken)
converter
is for projection that happens on the DB side as used in queryable.Select()
. If your conversion is not doable on the DB side, you need to convert yourself after getting the PagedList<T>
as queryable.Paginate(...).Select(...)
orderByKeySelectorExpression
is an argument of type Expression<Func<TSource, TKey>>
to select the OrderBy
property. You can use lambda expression for that.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net8.0
- Microsoft.EntityFrameworkCore (>= 9.0.7)
- UltimatePagination (>= 0.0.6)
-
net9.0
- Microsoft.EntityFrameworkCore (>= 9.0.7)
- UltimatePagination (>= 0.0.6)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on UltimatePagination.EF:
Package | Downloads |
---|---|
UltimateUtils.EF
Ultimate Utils for EF Core |
GitHub repositories
This package is not used by any popular GitHub repositories.