PartialResponseRequest.Filters 1.0.0-rc2

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

// Install PartialResponseRequest.Filters as a Cake Tool
#tool nuget:?package=PartialResponseRequest.Filters&version=1.0.0-rc2&prerelease

< back

Filters Queries

Syntax

id(gt:1,lt:10),status(in:1,2,3)

Usage

public class IdFilters
{
    public int Lt { get; set; }
    public int Gt { get; set; }
}
public class StatusFilters
{
    public string In { get; set; }
}

public class OrderFilters
{
    public IdFilters Id { get; set; }
    public StatusFilters Status { get; set; }
}

// Parsing
var parser = new FilterQueryParser();
List<FilterToken> result = parser.Parse("id(gt:1,lt:10),status(in:1,2,3)");

// Or building tokens manually with strong type
var builder = new FilterBuilder<OrderFilters>();
List<FilterToken> result = builder
    .Filter(x => x.Id, x => x
        .Operator(o => o.Gt, "1")
        .Operator(o => o.Lt, "10"))
    .Filter(x => x.Status, x => x
        .Operator(o => o.In, "1,2,3"))
    .Build();

// Interpreting
var interpreter = new FilterInterpreter<OrderFilters>(result);
interpreter.HasFilter(x => x.Id, op => {
    // Action format of handling an operator
    op.HandleOperator(o => o.Gt, (value, type) => {
        // Do something for id filter and it's Gt filter
        // value = 1, type = int
    });

    // Or check and get an operator value
    if(op.HasOperator(o => o.Gt)) {
        OperatorValue operator = op.GetOperator(o => o.Gt);
    }
});

// Serialize back into string query
var serializer = new FiltersSerializer();
string query = serializer.Serialize(result); // id(gt:1,lt:10),status(in:1,2,3)
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 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
1.2.2-beta 211 2/28/2021
1.1.0-beta 327 6/13/2020
1.0.0-rc2 305 3/8/2020
1.0.0-rc 440 3/7/2020