ReHackt.Linq
8.0.106
See the version list below for details.
dotnet add package ReHackt.Linq --version 8.0.106
NuGet\Install-Package ReHackt.Linq -Version 8.0.106
<PackageReference Include="ReHackt.Linq" Version="8.0.106" />
<PackageVersion Include="ReHackt.Linq" Version="8.0.106" />
<PackageReference Include="ReHackt.Linq" />
paket add ReHackt.Linq --version 8.0.106
#r "nuget: ReHackt.Linq, 8.0.106"
#addin nuget:?package=ReHackt.Linq&version=8.0.106
#tool nuget:?package=ReHackt.Linq&version=8.0.106
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
orIList.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 | Versions 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 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. |
-
net8.0
- ReHackt.Core (>= 8.0.106)
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.107 | 92 | a day ago |
8.0.106 | 172 | 6 days ago |
8.0.105 | 137 | 7 days ago |
8.0.104 | 139 | 7 days ago |
8.0.103 | 145 | 7 days ago |
8.0.102 | 160 | 7 days ago |
8.0.101 | 166 | 7 days ago |
8.0.100 | 164 | 7 days ago |
8.0.99 | 161 | 7 days ago |
8.0.98 | 166 | 7 days ago |
8.0.97 | 160 | 7 days ago |
8.0.96 | 171 | 7 days ago |
8.0.95 | 180 | 8 days ago |
8.0.94 | 176 | 8 days ago |
8.0.93 | 520 | 10 days ago |
8.0.92 | 205 | 18 days ago |
8.0.91 | 198 | 18 days ago |
8.0.90 | 193 | 18 days ago |
8.0.89 | 184 | 19 days ago |
8.0.88 | 184 | 20 days ago |
8.0.87 | 235 | 24 days ago |
8.0.86 | 218 | 24 days ago |
8.0.85 | 280 | a month ago |
8.0.84 | 172 | a month ago |
8.0.83 | 150 | a month ago |
8.0.82 | 149 | a month ago |
8.0.81 | 146 | a month ago |
8.0.80 | 161 | 2 months ago |
8.0.79 | 168 | 2 months ago |
8.0.78 | 182 | 2 months ago |
8.0.77 | 172 | 2 months ago |
8.0.76 | 175 | 2 months ago |
8.0.75 | 175 | 2 months ago |
8.0.74 | 157 | 2 months ago |
8.0.73 | 166 | 2 months ago |
8.0.72 | 170 | 2 months ago |
8.0.71 | 205 | 2 months ago |
8.0.70 | 174 | 2 months ago |
8.0.69 | 157 | 2 months ago |
8.0.68 | 122 | 3 months ago |
8.0.67 | 164 | 3 months ago |
8.0.66 | 153 | 3 months ago |
8.0.65 | 199 | 3 months ago |
8.0.64 | 206 | 3 months ago |
8.0.63 | 169 | 3 months ago |
8.0.62 | 176 | 4 months ago |
8.0.61 | 211 | 4 months ago |
8.0.60 | 159 | 4 months ago |
8.0.59 | 194 | 4 months ago |
8.0.58 | 179 | 4 months ago |
8.0.57 | 167 | 4 months ago |
8.0.56 | 159 | 4 months ago |
8.0.55 | 170 | 4 months ago |
8.0.54 | 304 | 4 months ago |
8.0.53 | 164 | 5 months ago |
8.0.52 | 153 | 5 months ago |
8.0.51 | 150 | 5 months ago |
8.0.50 | 151 | 5 months ago |
8.0.49 | 157 | 5 months ago |
8.0.48 | 153 | 5 months ago |
8.0.47 | 156 | 5 months ago |
8.0.46 | 408 | 6 months ago |
8.0.45 | 164 | 6 months ago |
8.0.44 | 156 | 6 months ago |
8.0.43 | 166 | 6 months ago |
8.0.42 | 160 | 6 months ago |
8.0.41 | 161 | 6 months ago |
8.0.40 | 156 | 6 months ago |
8.0.39 | 169 | 6 months ago |
8.0.38 | 153 | 6 months ago |
8.0.37 | 152 | 6 months ago |
8.0.36 | 170 | 6 months ago |
8.0.35 | 169 | 6 months ago |
8.0.34 | 167 | 6 months ago |
8.0.33 | 182 | 6 months ago |
8.0.32 | 193 | 6 months ago |
8.0.31 | 215 | 7 months ago |
8.0.30 | 197 | 7 months ago |
8.0.29 | 187 | 7 months ago |
8.0.28 | 201 | 7 months ago |
8.0.27 | 221 | 7 months ago |
8.0.26 | 164 | 8 months ago |
8.0.25 | 143 | 8 months ago |
8.0.24 | 142 | 8 months ago |
8.0.23 | 142 | 8 months ago |
8.0.22 | 134 | 8 months ago |
8.0.21 | 225 | 9 months ago |
8.0.20 | 194 | 9 months ago |
8.0.19 | 192 | 9 months ago |
8.0.18 | 354 | 10 months ago |
8.0.17 | 202 | 6/3/2024 |
8.0.16 | 170 | 6/3/2024 |
8.0.15 | 198 | 5/29/2024 |
8.0.14 | 185 | 5/15/2024 |
8.0.13 | 278 | 4/16/2024 |
8.0.12 | 208 | 4/10/2024 |
8.0.11 | 303 | 3/14/2024 |
8.0.10 | 363 | 2/21/2024 |
8.0.9 | 420 | 2/15/2024 |
8.0.8 | 410 | 2/8/2024 |
8.0.7 | 424 | 2/6/2024 |
8.0.6 | 527 | 1/29/2024 |
8.0.5 | 470 | 1/18/2024 |
8.0.4 | 454 | 1/16/2024 |
8.0.3 | 508 | 1/15/2024 |
8.0.2 | 494 | 1/14/2024 |
8.0.1 | 469 | 1/12/2024 |
8.0.0 | 523 | 12/19/2023 |
7.3.13 | 673 | 11/14/2023 |
7.3.12 | 585 | 11/13/2023 |
7.3.11 | 1,167 | 9/16/2023 |
7.3.10 | 706 | 9/15/2023 |
7.3.9 | 858 | 8/16/2023 |
7.3.8 | 900 | 7/12/2023 |
7.3.7 | 820 | 7/12/2023 |
7.3.6 | 807 | 7/10/2023 |
7.3.5 | 888 | 7/3/2023 |
7.3.4 | 981 | 6/8/2023 |
7.3.3 | 1,007 | 5/29/2023 |
7.3.2 | 1,122 | 4/27/2023 |
7.3.1 | 1,025 | 4/27/2023 |
7.3.0 | 1,043 | 4/17/2023 |
7.2.1 | 1,026 | 4/7/2023 |
7.2.0 | 1,026 | 4/6/2023 |
7.1.4 | 1,070 | 3/30/2023 |
7.1.3 | 1,027 | 3/29/2023 |
7.1.2 | 1,091 | 3/29/2023 |
7.1.0 | 1,245 | 3/28/2023 |
7.0.1 | 2,244 | 2/1/2023 |
7.0.0 | 1,559 | 12/2/2022 |
1.1.2 | 5,182 | 6/23/2022 |
1.1.1 | 2,233 | 6/23/2022 |
1.1.0 | 2,876 | 6/9/2022 |
1.0.9 | 1,822 | 6/9/2022 |
1.0.8 | 1,920 | 6/8/2022 |
1.0.7 | 3,296 | 5/13/2022 |
1.0.6 | 2,125 | 5/5/2022 |
1.0.5 | 5,986 | 4/8/2022 |
1.0.4 | 2,778 | 3/23/2022 |
1.0.3 | 2,815 | 3/9/2022 |
1.0.2 | 1,306 | 3/7/2022 |
1.0.1 | 1,349 | 3/7/2022 |
1.0.0 | 1,550 | 2/27/2022 |
1.0.0-alpha.14 | 161 | 2/24/2022 |
1.0.0-alpha.13 | 153 | 2/24/2022 |
1.0.0-alpha.12 | 152 | 2/24/2022 |
1.0.0-alpha.11 | 210 | 2/21/2022 |