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
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="RzR.ResultMessage.Pagination.EntityFrameworkCore" Version="4.0.0.7837" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="RzR.ResultMessage.Pagination.EntityFrameworkCore" Version="4.0.0.7837" />
                    
Directory.Packages.props
<PackageReference Include="RzR.ResultMessage.Pagination.EntityFrameworkCore" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add RzR.ResultMessage.Pagination.EntityFrameworkCore --version 4.0.0.7837
                    
#r "nuget: RzR.ResultMessage.Pagination.EntityFrameworkCore, 4.0.0.7837"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package RzR.ResultMessage.Pagination.EntityFrameworkCore@4.0.0.7837
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=RzR.ResultMessage.Pagination.EntityFrameworkCore&version=4.0.0.7837
                    
Install as a Cake Addin
#tool nuget:?package=RzR.ResultMessage.Pagination.EntityFrameworkCore&version=4.0.0.7837
                    
Install as a Cake Tool

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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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