Skip to content

I-RzR-I/PagedListResult

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Note This repository is developed for .netstandard2.0 with support .net5, net6, and .net7.

Name Details
PagedListResult.Common NuGet Version Nuget Downloads
PagedListResult NuGet Version Nuget Downloads

This repository results from the necessity to implement pagination for grids/tables, a server-side pagination. the current solution is based on 2 projects, the first(PagedListResult.Common) represents the expressions builder for filters, search, and validation; the second(PagedListResult) uses extension methods to create the pagination requests and pagination results.

The PagedListResult.Common is written using framework .netstandard2.0, and based on System.Linq.Expressions. And the base available functionalities are: search in fields, order records, filter be specific conditions, set on top some records, etc.

The PagedListResult have the extension methods to make pagination request and result more easily to integrate. It depends by PagedListResult.Common and the almost implementation are based on Microsoft.EntityFrameworkCore.

The request contains:

{
  "page": 1,
  "pageSize": 10,
  "search": {
    "search": "string",
    "searchInAllTextFields": true,
    "customSearchTextProperties": [
      "string"
    ]
  },
  "order": {
    "orderByProperty": "string",
    "orderDirection": 0,
    "orderByDefaultProperty": false
  },
  "fields": [
    "string"
  ],
  "predefinedRecords": [
    "string"
  ],
  "filters": [
    {
      "filterValue": {
        "condition": 0,
        "propertyName": "string",
        "values": [
          "string"
        ],
        "compareValue": "string"
      },
      "filterApplyOrder": 0,
      "dependencies": [
        {
          "parentFilterLinkType": 0,
          "filterValue": {
            "condition": 0,
            "propertyName": "string",
            "values": [
              "string"
            ],
            "compareValue": "string"
          }
        }
      ]
    }
  ]
}

The result contains:

{
  "currentPage": 1,
  "pageCount": 0,
  "pageSize": 10,
  "rowCount": 0,
  "executionDetails": {
    "executionTimeMs": 0,
    "executionDate": "yyyy-MM-ddTHH:mm:ss.fff"
  },
  "response": [],
  "isSuccess": true,
  "messages": []
}

In case you wish to use it in your project, u can install the package from nuget.org or specify what version you want:

Install-Package PagedListResult -Version x.x.x.x

Content

  1. USING
  2. CHANGELOG
  3. BRANCH-GUIDE

About

`PagedListResult` is a library designed to offer possibilities to get/return data from a dataset in small parts with multiple filter possibilities.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published