RzR.ResultMessage.Pagination.Abstractions 4.0.0.7837

dotnet add package RzR.ResultMessage.Pagination.Abstractions --version 4.0.0.7837
                    
NuGet\Install-Package RzR.ResultMessage.Pagination.Abstractions -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.Abstractions" 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.Abstractions" Version="4.0.0.7837" />
                    
Directory.Packages.props
<PackageReference Include="RzR.ResultMessage.Pagination.Abstractions" />
                    
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.Abstractions --version 4.0.0.7837
                    
#r "nuget: RzR.ResultMessage.Pagination.Abstractions, 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.Abstractions@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.Abstractions&version=4.0.0.7837
                    
Install as a Cake Addin
#tool nuget:?package=RzR.ResultMessage.Pagination.Abstractions&version=4.0.0.7837
                    
Install as a Cake Tool

RzR.ResultMessage.Pagination.Abstractions

Plain netstandard2.0 request and response models for server-side pagination. Use this package when you only need to share the contract between client and server.

Install

Install-Package RzR.ResultMessage.Pagination.Abstractions

What's in the box

  • PagedRequest, PageRequestWithFilters
  • PagedResult<T> and IPagedResult<T>
  • DataFilter, DataFilterValue, DataFilterDependence
  • DataSearchDefinition, DataOrderDefinition, DataPredefinedFilterDefinition
  • DefaultPrimaryKeyDefinition, PagedExecDetailsResult
  • Enums: FilterType, FilterConditionType, OrderDirection

Minimal sample

var request = new PageRequestWithFilters
{
    Page = 2,
    PageSize = 20,
    Order = new DataOrderDefinition { OrderByProperty = "Price", OrderDirection = OrderDirection.Desc },
    Search = new DataSearchDefinition { Search = "usb", SearchInAllTextFields = true },
    Filters = new[]
    {
        new DataFilter
        {
            FilterValue = new DataFilterValue
            {
                PropertyName = "Status",
                Condition = FilterType.Equals,
                Values = new[] { "active" }
            }
        }
    }
};
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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 was computed.  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 was computed.  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 was computed.  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 netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  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.Abstractions:

Package Downloads
PagedListResult.DataModels

DEPRECATED. This package has been renamed to RzR.ResultMessage.Pagination.Abstractions 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.DataModels -> RzR.ResultMessage.Pagination.Abstractions using PagedListResult.DataModels.* -> using RzR.ResultMessage.Pagination.Abstractions.*

RzR.ResultMessage.Pagination.Core

An extension based on `netstandard 2.0` with query properties filter and query source filter by text, order filter, and X top record. Property filters are based on `Expression` with multiple types of filters. This library is used in `PagedListResult` as core execution.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
4.0.0.7837 86 4/30/2026