RzR.ResultMessage.Pagination.EntityFrameworkCore
4.0.0.7837
dotnet add package RzR.ResultMessage.Pagination.EntityFrameworkCore --version 4.0.0.7837
NuGet\Install-Package RzR.ResultMessage.Pagination.EntityFrameworkCore -Version 4.0.0.7837
<PackageReference Include="RzR.ResultMessage.Pagination.EntityFrameworkCore" Version="4.0.0.7837" />
<PackageVersion Include="RzR.ResultMessage.Pagination.EntityFrameworkCore" Version="4.0.0.7837" />
<PackageReference Include="RzR.ResultMessage.Pagination.EntityFrameworkCore" />
paket add RzR.ResultMessage.Pagination.EntityFrameworkCore --version 4.0.0.7837
#r "nuget: RzR.ResultMessage.Pagination.EntityFrameworkCore, 4.0.0.7837"
#:package RzR.ResultMessage.Pagination.EntityFrameworkCore@4.0.0.7837
#addin nuget:?package=RzR.ResultMessage.Pagination.EntityFrameworkCore&version=4.0.0.7837
#tool nuget:?package=RzR.ResultMessage.Pagination.EntityFrameworkCore&version=4.0.0.7837
RzR.ResultMessage.Pagination.EntityFrameworkCore
IQueryable<T> extensions for server-side pagination on top of Microsoft.EntityFrameworkCore. Pagination + free-text search + property-based ordering + filters (And/Or, dependencies) + projection (fields) + predefined "pinned" rows in a single call.
Install
Install-Package RzR.ResultMessage.Pagination.EntityFrameworkCore
Transitively brings in RzR.ResultMessage.Pagination.Abstractions and RzR.ResultMessage.Pagination.Core.
API surface
| Method | Use it when |
|---|---|
GetPaged(page, pageSize) / GetPagedAsync(...) |
Plain pagination. |
GetPaged(request) / GetPagedAsync(request, ct) |
Pagination + ordering + search + projection + predefined records. |
GetPagedWithMainFiltersAsync(request, ct) |
Adds top-level AND filters from PageRequestWithFilters.Filters. |
GetPagedWithFiltersAsync(request, defaultPrimaryKey?, filterLink?, ct) |
Full filter pipeline including per-filter dependencies. |
Minimal sample
using RzR.ResultMessage.Pagination.EntityFrameworkCore;
PagedResult<Product> page = await _db.Products
.AsNoTracking()
.GetPagedWithFiltersAsync(request, cancellationToken: ct);
// page.Response -> IList<Product>
// page.RowCount -> total filtered rows
// page.PageCount -> total pages
// page.CurrentPage / page.PageSize / page.HasNextPage / page.HasPreviousPage
// page.ExecutionDetails.ExecutionTimeMs
For ASP.NET Core controllers and minimal APIs, install RzR.ResultMessage.Pagination.AspNetCore.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 is compatible. net5.0-windows was computed. net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. 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. |
| .NET Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.1 is compatible. |
| MonoAndroid | monoandroid was computed. |
| MonoMac | monomac was computed. |
| MonoTouch | monotouch was computed. |
| Tizen | tizen60 was computed. |
| Xamarin.iOS | xamarinios was computed. |
| Xamarin.Mac | xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.1
- Microsoft.CSharp (>= 4.7.0)
- Microsoft.EntityFrameworkCore (>= 5.0.0)
- Microsoft.EntityFrameworkCore.Relational (>= 5.0.0)
- MockAsyncEnumerable (>= 3.0.0.3872)
- RzR.ResultMessage.Pagination.Core (>= 4.0.0.7837)
-
net5.0
- Microsoft.CSharp (>= 4.7.0)
- Microsoft.EntityFrameworkCore (>= 5.0.17)
- Microsoft.EntityFrameworkCore.Relational (>= 5.0.17)
- MockAsyncEnumerable (>= 3.0.0.3872)
- RzR.ResultMessage.Pagination.Core (>= 4.0.0.7837)
-
net6.0
- Microsoft.CSharp (>= 4.7.0)
- Microsoft.EntityFrameworkCore (>= 6.0.0)
- Microsoft.EntityFrameworkCore.Relational (>= 6.0.0)
- MockAsyncEnumerable (>= 3.0.0.3872)
- RzR.ResultMessage.Pagination.Core (>= 4.0.0.7837)
-
net7.0
- Microsoft.CSharp (>= 4.7.0)
- Microsoft.EntityFrameworkCore (>= 7.0.0)
- Microsoft.EntityFrameworkCore.Relational (>= 7.0.0)
- MockAsyncEnumerable (>= 3.0.0.3872)
- RzR.ResultMessage.Pagination.Core (>= 4.0.0.7837)
-
net8.0
- Microsoft.CSharp (>= 4.7.0)
- Microsoft.EntityFrameworkCore (>= 8.0.0)
- Microsoft.EntityFrameworkCore.Relational (>= 8.0.0)
- MockAsyncEnumerable (>= 3.0.0.3872)
- RzR.ResultMessage.Pagination.Core (>= 4.0.0.7837)
-
net9.0
- Microsoft.CSharp (>= 4.7.0)
- Microsoft.EntityFrameworkCore (>= 9.0.0)
- Microsoft.EntityFrameworkCore.Relational (>= 9.0.0)
- MockAsyncEnumerable (>= 3.0.0.3872)
- RzR.ResultMessage.Pagination.Core (>= 4.0.0.7837)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on RzR.ResultMessage.Pagination.EntityFrameworkCore:
| Package | Downloads |
|---|---|
|
PagedListResult
DEPRECATED. This package has been renamed to RzR.ResultMessage.Pagination.EntityFrameworkCore starting with version 4.0.0.7837 This 3.2.0 release contains no code; it only depends on the new package so existing restores keep working. Please update your PackageReference and your `using` directives: PagedListResult -> RzR.ResultMessage.Pagination.EntityFrameworkCore using PagedListResult.* -> using RzR.ResultMessage.Pagination.EntityFrameworkCore.* |
|
|
RzR.ResultMessage.Pagination.AspNetCore
An extension that offers the possibility to get/return data set as a list with pagination with filter, order, and search availability, loading the list with page size. Available methods: GetPaged/Async, GetPagedWithMainFiltersAsync, GetPagedWithFiltersAsync. |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 4.0.0.7837 | 37 | 4/30/2026 |