Soukoku.FilterSortParsing 1.0.0.3

dotnet add package Soukoku.FilterSortParsing --version 1.0.0.3
                    
NuGet\Install-Package Soukoku.FilterSortParsing -Version 1.0.0.3
                    
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="Soukoku.FilterSortParsing" Version="1.0.0.3" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soukoku.FilterSortParsing" Version="1.0.0.3" />
                    
Directory.Packages.props
<PackageReference Include="Soukoku.FilterSortParsing" />
                    
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 Soukoku.FilterSortParsing --version 1.0.0.3
                    
#r "nuget: Soukoku.FilterSortParsing, 1.0.0.3"
                    
#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 Soukoku.FilterSortParsing@1.0.0.3
                    
#: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=Soukoku.FilterSortParsing&version=1.0.0.3
                    
Install as a Cake Addin
#tool nuget:?package=Soukoku.FilterSortParsing&version=1.0.0.3
                    
Install as a Cake Tool

FilterSortParsing

A .NET library for parsing and applying OData-like filter and sorting expressions to IQueryable<T> data sources.

Features

  • Filter Support - OData-like filter syntax with comparison operators, string functions, and logical operators
  • Sorting Support - Multi-field sorting with ascending/descending order
  • Case Insensitive - Keywords, operators, and property names
  • Nested Properties - Dot notation navigation

Installation

<PackageReference Include="Soukoku.FilterSortParsing" Version="*" />

Quick Start

Filtering

using Soukoku.FilterSortParsing;

var people = dbContext.People.AsQueryable();

// Simple filter
var adults = people.ApplyFilter("Age ge 18");

// Complex filter
var result = people.ApplyFilter(
    "(Age ge 25 and Age le 65) and (Address.State eq 'CA' or Address.State eq 'NY')"
);

// String operations
var johns = people.ApplyFilter("FirstName startswith 'John'");

Sorting

// Single field
var sorted = people.ApplyOrderBy("LastName");

// Multiple fields with directions
var sorted = people.ApplyOrderBy("Age desc, LastName asc, FirstName asc");

Chaining

var result = people
    .ApplyFilter("Age ge 25 and IsActive eq true")
    .ApplyOrderBy("LastName, FirstName")
    .Skip(20)
    .Take(10)
    .ToList();

Filter Operators

Comparison

  • eq, ne - Equal, not equal
  • gt, ge - Greater than (or equal)
  • lt, le - Less than (or equal)

String Functions

  • contains, startswith, endswith

Logical

  • and, or, not
  • ( ) - Grouping and precedence

Sorting Syntax

  • Direction: asc, ascending, desc, descending
  • Multiple fields: Comma-separated
  • Default: Ascending

Documentation

Compatibility

  • .NET 8+ - Full support
  • .NET Framework 4.6.2+ - Full support with System.Memory backport
Product Compatible and additional computed target framework versions.
.NET 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 is compatible.  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 Framework net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETFramework 4.6.2

  • net10.0

    • No dependencies.
  • net8.0

    • No dependencies.
  • net9.0

    • No dependencies.

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.0.0.3 84 1/4/2026