PrimeNG.TableFilter 1.0.4

There is a newer version of this package available.
See the version list below for details.
dotnet add package PrimeNG.TableFilter --version 1.0.4
NuGet\Install-Package PrimeNG.TableFilter -Version 1.0.4
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="PrimeNG.TableFilter" Version="1.0.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add PrimeNG.TableFilter --version 1.0.4
#r "nuget: PrimeNG.TableFilter, 1.0.4"
#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.
// Install PrimeNG.TableFilter as a Cake Addin
#addin nuget:?package=PrimeNG.TableFilter&version=1.0.4

// Install PrimeNG.TableFilter as a Cake Tool
#tool nuget:?package=PrimeNG.TableFilter&version=1.0.4

PrimeNG.TableFilter

NuGet version Build Status

Helper for use the PrimeNG table load lazy filter in backend use LINQ to Entity

.Net Platform Support

  • .Net Standard 2.0
  • .Net Framework 4.0 more then
  • Mono Framework

Feature

  • Handle all command from PrimeNG table filter frontend
  • Filter criteria from PrimeNG table filter in Iterators and Entities
  • Convert PrimeNG table filter payload to SQL Query (use LINQ to Entities)

Install via Nuget Package Manager

PM> Install-Package PrimeNG.TableFilter

How to use

  1. Handle PrimeNG table filter payload in ASP.Net MVC Controller use "TableFilterModel" in parameter from body
[HttpPost("[action]")]
        public BaseTableResponseEntity<ClassRoomGridModel> GetClassRoom([FromBody] TableFilterModel tableFilterPayload)
            => _classRoomService.GetClassRoom(tableFilterPayload);
  1. Implement programming logic for get your data from iterators or entities and use extension method "PrimengTableFilter" in your iterators or entities
public BaseTableResponseEntity<ClassRoomGridModel> GetClassRoom(TableFilterModel filterPayload)
        {
            var totalRecord = 0; // for summary all record before pagination
            var result = _classRoomRepository.Gets()
                .Select(o =>
                    new ClassRoomGridModel
                    {
                        Code = o.Code,
                        Id = o.Id,
                        TotalSeat = o.TotalSeat,
                        BuildingName = o.BuildingName.Description,
                        Name = o.Name,
                        Remark = o.Remark,
                        ActiveFlag = o.ActiveFlag,
                        Type = GenerateClassRoomTypeToText(o.Type)
                    }
                );
            result = result.PrimengTableFilter(filterPayload, ref totalRecord);
            return MvcHelper.ResponseTableData(totalRecord, result);
        }

MIT License

Copyright (c) 2021 Weerayut Hongsa

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. 
.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 net40 is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  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

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.1.4 9,124 11/3/2023
2.1.3 4,000 7/2/2023
2.1.2 28,764 11/7/2022
2.1.1 31,791 3/5/2022
2.1.0 408 3/5/2022
2.0.0 6,633 5/2/2021
1.0.4 405 3/5/2021
1.0.3 2,461 6/7/2019
1.0.2 1,320 3/4/2019
1.0.1 581 2/27/2019
1.0.0 562 2/26/2019