ReHackt.Linq 7.3.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package ReHackt.Linq --version 7.3.2
                    
NuGet\Install-Package ReHackt.Linq -Version 7.3.2
                    
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="ReHackt.Linq" Version="7.3.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="ReHackt.Linq" Version="7.3.2" />
                    
Directory.Packages.props
<PackageReference Include="ReHackt.Linq" />
                    
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 ReHackt.Linq --version 7.3.2
                    
#r "nuget: ReHackt.Linq, 7.3.2"
                    
#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 ReHackt.Linq@7.3.2
                    
#: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=ReHackt.Linq&version=7.3.2
                    
Install as a Cake Addin
#tool nuget:?package=ReHackt.Linq&version=7.3.2
                    
Install as a Cake Tool

ReHackt.Linq

Some useful System.Linq.IQueryable extensions such as filtering, ordering, paging...

Install

Get it on <a href="https://www.nuget.org/packages/ReHackt.Linq"><img src="https://www.nuget.org/Content/gallery/img/default-package-icon.svg" height=18 style="height:18px;" /> NuGet</a>

QueryableFilter

QueryableFilter<T> allows to dynamically filter an IQueryable<T> with a query string. For example, this can be useful for an API whose clients can filter a collection of entities on any of its properties, or create complex logical queries.

For example

string query = @"Name eq ""Bond"" and (""james"" in Email or (Status in [1, 2] and ""007"" in Codes)) and (Amount lt 1000 or IsEnabled eq false)";

if(QueryableFilter.TryParse(query, out QueryableFilter<Agent> filter) {
    IQueryable<Agent> agents = _agentManager.Agents.Filter(filter);
}
else { /* Handle invalid query */ };

Is equivalent to

IQueryable<Agent> agents = _agentManager.Agents
    .Where(u => u.Name == "Bond"
        && (u.Email.Contains("james")
            || (new int[] { 1, 2 }.Contains(Status) && u.Codes.Contains("007")))
        && (u.Amount < 1000 || u.IsEnabled == false);

Supported in query

  • Boolean operators: and, or, not
  • Comparison operators: eq, ne, gt, gte (ge), lt, lte (le), in (string.Contains or IList.Contains)
  • Value types: bool?, DateTimeOffset?, double?, int?, enum, null, string, DateTimeOffset?[], double?[], int?[], string[]
  • Parentheses
  • Property names (nested properties and collection properties supported)

IQueryable extensions

Filtering

Filter

Filter allows to apply a QueryableFilter<T> to the input sequence using LINQ method syntax.

source.Filter(filter) // filter is a QueryableFilter<T>

Is syntactic sugar for

filter.Apply(source)

This method also allows you to directly filter the input sequence with a query string (implicitly creating a QueryableFilter<T>). Be careful, this can throw an argument exception if the query string is not valid.

source.Filter(filterQuery) // filterQuery is a string

Is syntactic sugar for

QueryableFilter.TryParse(filterQuery, out QueryableFilter<T> filter) ?
    source.Filter(filter) :
    throw new ArgumentException("Invalid filter query", nameof(filterQuery))
WhereIf
source.WhereIf(condition, predicate)

Is syntactic sugar for

condition ? source.Where(predicate) : source

This allows you to keep the LINQ method syntax to apply filters according to a condition that does not depend on the element being tested.

For example

return source
            .Join(...)
            .Where(...)
            .WhereIf(condition1, predicate1)
            .WhereIf(condition2, predicate2)
            .OrderBy(...)
            .Select(...);

Is equivalent to

source = source            
            .Join(...)
            .Where(...);

if(condition1) {
    source = source.Where(predicate1);
} 

if(condition2) {
    source = source.Where(predicate2);
}

return source
            .OrderBy(...)
            .Select(...);

Ordering

// TODO Write documentation of Sort(...)

Paging

PageBy
source.PageBy(page, pageSize)

Is syntactic sugar for

source.Skip(((page < 1 ? 1 : page) - 1) * pageSize).Take(pageSize)
Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (4)

Showing the top 4 NuGet packages that depend on ReHackt.Linq:

Package Downloads
ReHackt.AspNetCore.Abstractions

Package Description

ReHackt.Linq.AutoMapper

Extends ReHackt.Linq with object-object mapping using AutoMapper profiles.

ReHackt.Schema

Package Description

ReHackt.Linq.Benchmarks

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
8.0.135 393 10/15/2025
8.0.134 345 10/7/2025
8.0.133 361 9/10/2025
8.0.132 296 9/10/2025
8.0.131 300 9/10/2025
8.0.130 313 9/10/2025
8.0.129 340 9/1/2025
8.0.128 331 8/20/2025
8.0.127 330 8/18/2025
8.0.126 354 8/15/2025
8.0.125 282 8/15/2025
8.0.124 323 8/14/2025
8.0.123 319 8/14/2025
8.0.122 316 8/14/2025
8.0.121 320 8/13/2025
8.0.120 390 8/5/2025
8.0.119 281 8/4/2025
8.0.118 220 8/1/2025
8.0.117 229 7/31/2025
8.0.116 224 7/31/2025
8.0.115 335 7/17/2025
8.0.114 1,004 6/11/2025
8.0.113 385 5/28/2025
8.0.112 371 5/19/2025
8.0.111 473 5/13/2025
8.0.110 453 4/17/2025
8.0.109 388 4/16/2025
8.0.108 427 4/9/2025
8.0.107 431 4/3/2025
8.0.106 360 3/29/2025
8.0.105 333 3/29/2025
8.0.104 316 3/29/2025
8.0.103 314 3/29/2025
8.0.102 330 3/28/2025
8.0.101 337 3/28/2025
8.0.100 335 3/28/2025
8.0.99 340 3/28/2025
8.0.98 358 3/28/2025
8.0.97 320 3/28/2025
8.0.96 330 3/28/2025
8.0.95 347 3/27/2025
8.0.94 344 3/27/2025
8.0.93 718 3/25/2025
8.0.92 388 3/18/2025
8.0.91 369 3/17/2025
8.0.90 401 3/17/2025
8.0.89 337 3/16/2025
8.0.88 352 3/16/2025
8.0.87 400 3/11/2025
8.0.86 394 3/11/2025
8.0.85 476 3/6/2025
8.0.84 350 2/23/2025
8.0.83 335 2/23/2025
8.0.82 335 2/22/2025
8.0.81 312 2/22/2025
8.0.80 332 2/19/2025
8.0.79 341 2/19/2025
8.0.78 357 2/18/2025
8.0.77 353 2/14/2025
8.0.76 326 2/14/2025
8.0.75 332 2/12/2025
8.0.74 343 2/11/2025
8.0.73 335 2/11/2025
8.0.72 339 2/11/2025
8.0.71 386 2/3/2025
8.0.70 348 1/30/2025
8.0.69 327 1/20/2025
8.0.68 290 1/14/2025
8.0.67 334 1/6/2025
8.0.66 300 1/6/2025
8.0.65 360 1/3/2025
8.0.64 361 12/20/2024
8.0.63 334 12/20/2024
8.0.62 326 12/19/2024
8.0.61 389 12/16/2024
8.0.60 331 12/13/2024
8.0.59 366 11/26/2024
8.0.58 340 11/26/2024
8.0.57 318 11/25/2024
8.0.56 331 11/25/2024
8.0.55 343 11/23/2024
8.0.54 507 11/21/2024
8.0.53 345 11/19/2024
8.0.52 317 11/19/2024
8.0.51 312 11/19/2024
8.0.50 316 11/18/2024
8.0.49 332 11/14/2024
8.0.48 321 11/14/2024
8.0.47 317 11/13/2024
8.0.46 766 10/13/2024
8.0.45 310 10/11/2024
8.0.44 316 10/11/2024
8.0.43 332 10/10/2024
8.0.42 332 10/10/2024
8.0.41 328 10/8/2024
8.0.40 330 10/7/2024
8.0.39 335 10/7/2024
8.0.38 303 10/7/2024
8.0.37 325 10/7/2024
8.0.36 349 10/3/2024
8.0.35 322 10/3/2024
8.0.34 334 10/2/2024
8.0.33 349 10/2/2024
8.0.32 363 9/27/2024
8.0.31 377 9/12/2024
8.0.30 358 9/12/2024
8.0.29 348 9/12/2024
8.0.28 359 9/3/2024
8.0.27 388 8/26/2024
8.0.26 326 8/4/2024
8.0.25 320 8/4/2024
8.0.24 292 8/4/2024
8.0.23 289 8/3/2024
8.0.22 279 8/3/2024
8.0.21 414 7/9/2024
8.0.20 328 7/6/2024
8.0.19 362 7/4/2024
8.0.18 638 6/17/2024
8.0.17 361 6/3/2024
8.0.16 302 6/3/2024
8.0.15 359 5/29/2024
8.0.14 342 5/15/2024
8.0.13 435 4/16/2024
8.0.12 359 4/10/2024
8.0.11 466 3/14/2024
8.0.10 501 2/21/2024
8.0.9 585 2/15/2024
8.0.8 566 2/8/2024
8.0.7 588 2/6/2024
8.0.6 693 1/29/2024
8.0.5 642 1/18/2024
8.0.4 618 1/16/2024
8.0.3 663 1/15/2024
8.0.2 631 1/14/2024
8.0.1 603 1/12/2024
8.0.0 671 12/19/2023
7.3.13 836 11/14/2023
7.3.12 727 11/13/2023
7.3.11 1,299 9/16/2023
7.3.10 846 9/15/2023
7.3.9 1,025 8/16/2023
7.3.8 1,065 7/12/2023
7.3.7 981 7/12/2023
7.3.6 965 7/10/2023
7.3.5 1,036 7/3/2023
7.3.4 1,156 6/8/2023
7.3.3 1,182 5/29/2023
7.3.2 1,284 4/27/2023
7.3.1 1,213 4/27/2023
7.3.0 1,237 4/17/2023
7.2.1 1,209 4/7/2023
7.2.0 1,186 4/6/2023
7.1.4 1,253 3/30/2023
7.1.3 1,202 3/29/2023
7.1.2 1,285 3/29/2023
7.1.0 1,455 3/28/2023
7.0.1 2,524 2/1/2023
7.0.0 1,722 12/2/2022
1.1.2 5,514 6/23/2022
1.1.1 2,408 6/23/2022
1.1.0 3,106 6/9/2022
1.0.9 2,005 6/9/2022
1.0.8 2,113 6/8/2022
1.0.7 3,585 5/13/2022
1.0.6 2,346 5/5/2022
1.0.5 6,438 4/8/2022
1.0.4 2,994 3/23/2022
1.0.3 3,054 3/9/2022
1.0.2 1,449 3/7/2022
1.0.1 1,513 3/7/2022
1.0.0 1,718 2/27/2022
1.0.0-alpha.14 262 2/24/2022
1.0.0-alpha.13 264 2/24/2022
1.0.0-alpha.12 245 2/24/2022
1.0.0-alpha.11 316 2/21/2022