ReHackt.Linq.AutoMapper
8.0.112
See the version list below for details.
dotnet add package ReHackt.Linq.AutoMapper --version 8.0.112
NuGet\Install-Package ReHackt.Linq.AutoMapper -Version 8.0.112
<PackageReference Include="ReHackt.Linq.AutoMapper" Version="8.0.112" />
<PackageVersion Include="ReHackt.Linq.AutoMapper" Version="8.0.112" />
<PackageReference Include="ReHackt.Linq.AutoMapper" />
paket add ReHackt.Linq.AutoMapper --version 8.0.112
#r "nuget: ReHackt.Linq.AutoMapper, 8.0.112"
#:package ReHackt.Linq.AutoMapper@8.0.112
#addin nuget:?package=ReHackt.Linq.AutoMapper&version=8.0.112
#tool nuget:?package=ReHackt.Linq.AutoMapper&version=8.0.112
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. 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. |
-
net8.0
- AutoMapper (>= 14.0.0)
- AutoMapper.Extensions.ExpressionMapping (>= 8.0.0)
- ReHackt.Linq (>= 8.0.112)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on ReHackt.Linq.AutoMapper:
Package | Downloads |
---|---|
ReHackt.AspNetCore.AutoMapper
Package Description |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last Updated |
---|---|---|
8.0.115 | 118 | 7/17/2025 |
8.0.114 | 767 | 6/11/2025 |
8.0.113 | 203 | 5/28/2025 |
8.0.112 | 202 | 5/19/2025 |
8.0.111 | 281 | 5/13/2025 |
8.0.110 | 304 | 4/17/2025 |
8.0.109 | 243 | 4/16/2025 |
8.0.108 | 252 | 4/9/2025 |
8.0.107 | 249 | 4/3/2025 |
8.0.106 | 193 | 3/29/2025 |
8.0.105 | 153 | 3/29/2025 |
8.0.104 | 151 | 3/29/2025 |
8.0.103 | 148 | 3/29/2025 |
8.0.102 | 174 | 3/28/2025 |
8.0.101 | 166 | 3/28/2025 |
8.0.100 | 179 | 3/28/2025 |
8.0.99 | 168 | 3/28/2025 |
8.0.98 | 174 | 3/28/2025 |
8.0.97 | 164 | 3/28/2025 |
8.0.96 | 180 | 3/28/2025 |
8.0.95 | 181 | 3/27/2025 |
8.0.94 | 177 | 3/27/2025 |
8.0.93 | 526 | 3/25/2025 |
8.0.92 | 207 | 3/18/2025 |
8.0.91 | 200 | 3/17/2025 |
8.0.90 | 196 | 3/17/2025 |
8.0.89 | 189 | 3/16/2025 |
8.0.88 | 191 | 3/16/2025 |
8.0.87 | 245 | 3/11/2025 |
8.0.86 | 232 | 3/11/2025 |
8.0.85 | 288 | 3/6/2025 |
8.0.84 | 169 | 2/23/2025 |
8.0.83 | 158 | 2/23/2025 |
8.0.82 | 139 | 2/22/2025 |
8.0.81 | 135 | 2/22/2025 |
8.0.80 | 150 | 2/19/2025 |
8.0.79 | 157 | 2/19/2025 |
8.0.78 | 156 | 2/18/2025 |
8.0.77 | 151 | 2/14/2025 |
8.0.76 | 144 | 2/14/2025 |
8.0.75 | 159 | 2/12/2025 |
8.0.74 | 143 | 2/11/2025 |
8.0.73 | 153 | 2/11/2025 |
8.0.72 | 151 | 2/11/2025 |
8.0.71 | 182 | 2/3/2025 |
8.0.70 | 165 | 1/30/2025 |
8.0.69 | 145 | 1/20/2025 |
8.0.68 | 114 | 1/14/2025 |
8.0.67 | 145 | 1/6/2025 |
8.0.66 | 142 | 1/6/2025 |
8.0.65 | 192 | 1/3/2025 |
8.0.64 | 199 | 12/20/2024 |
8.0.63 | 161 | 12/20/2024 |
8.0.62 | 163 | 12/19/2024 |
8.0.61 | 203 | 12/16/2024 |
8.0.60 | 150 | 12/13/2024 |
8.0.59 | 183 | 11/26/2024 |
8.0.58 | 165 | 11/26/2024 |
8.0.57 | 153 | 11/25/2024 |
8.0.56 | 150 | 11/25/2024 |
8.0.55 | 158 | 11/23/2024 |
8.0.54 | 155 | 11/21/2024 |
8.0.53 | 153 | 11/19/2024 |
8.0.52 | 154 | 11/19/2024 |
8.0.51 | 149 | 11/19/2024 |
8.0.50 | 139 | 11/18/2024 |
8.0.49 | 152 | 11/14/2024 |
8.0.48 | 143 | 11/14/2024 |
8.0.47 | 144 | 11/13/2024 |
8.0.46 | 227 | 10/13/2024 |
8.0.45 | 157 | 10/11/2024 |
8.0.44 | 151 | 10/11/2024 |
8.0.43 | 154 | 10/10/2024 |
8.0.42 | 169 | 10/10/2024 |
8.0.41 | 165 | 10/8/2024 |
8.0.40 | 148 | 10/7/2024 |
8.0.39 | 163 | 10/7/2024 |
8.0.38 | 147 | 10/7/2024 |
8.0.37 | 146 | 10/7/2024 |
8.0.36 | 150 | 10/3/2024 |
8.0.35 | 153 | 10/3/2024 |
8.0.34 | 156 | 10/2/2024 |
8.0.33 | 187 | 10/2/2024 |
8.0.32 | 188 | 9/27/2024 |
8.0.31 | 207 | 9/12/2024 |
8.0.30 | 167 | 9/12/2024 |
8.0.29 | 168 | 9/12/2024 |
8.0.28 | 199 | 9/3/2024 |
8.0.27 | 201 | 8/26/2024 |
8.0.26 | 146 | 8/4/2024 |
8.0.25 | 147 | 8/4/2024 |
8.0.24 | 122 | 8/4/2024 |
8.0.23 | 144 | 8/3/2024 |
8.0.22 | 137 | 8/3/2024 |
8.0.21 | 170 | 7/9/2024 |
8.0.20 | 187 | 7/6/2024 |
8.0.19 | 162 | 7/4/2024 |
8.0.18 | 405 | 6/17/2024 |
8.0.17 | 207 | 6/3/2024 |
8.0.16 | 169 | 6/3/2024 |
8.0.15 | 182 | 5/29/2024 |
8.0.14 | 168 | 5/15/2024 |
8.0.13 | 268 | 4/16/2024 |
8.0.12 | 182 | 4/10/2024 |
8.0.11 | 233 | 3/14/2024 |
8.0.10 | 215 | 2/21/2024 |
8.0.9 | 265 | 2/15/2024 |
8.0.8 | 251 | 2/8/2024 |
8.0.7 | 267 | 2/6/2024 |
8.0.6 | 264 | 1/29/2024 |
8.0.5 | 277 | 1/18/2024 |
8.0.4 | 286 | 1/16/2024 |
8.0.3 | 290 | 1/15/2024 |
8.0.2 | 268 | 1/14/2024 |
8.0.1 | 275 | 1/12/2024 |
8.0.0 | 311 | 12/19/2023 |
7.3.13 | 353 | 11/14/2023 |
7.3.12 | 309 | 11/13/2023 |
7.3.11 | 454 | 9/16/2023 |
7.3.10 | 358 | 9/15/2023 |
7.3.9 | 492 | 8/16/2023 |
7.3.8 | 493 | 7/12/2023 |
7.3.7 | 396 | 7/12/2023 |
7.3.6 | 392 | 7/10/2023 |
7.3.5 | 481 | 7/3/2023 |
7.3.4 | 497 | 6/8/2023 |
7.3.3 | 524 | 5/29/2023 |
7.3.2 | 644 | 4/27/2023 |
7.3.1 | 509 | 4/27/2023 |
7.3.0 | 538 | 4/17/2023 |
7.2.1 | 530 | 4/7/2023 |
7.2.0 | 516 | 4/6/2023 |
7.1.4 | 572 | 3/30/2023 |
7.1.3 | 551 | 3/29/2023 |
7.1.2 | 568 | 3/29/2023 |
7.1.0 | 747 | 3/28/2023 |
7.0.2 | 966 | 2/19/2023 |
7.0.1 | 595 | 2/1/2023 |
7.0.0 | 1,077 | 12/2/2022 |
1.1.3 | 2,753 | 7/5/2022 |
1.1.2 | 506 | 6/23/2022 |
1.1.1 | 1,508 | 6/23/2022 |
1.1.0 | 1,643 | 6/9/2022 |
1.0.9 | 1,084 | 6/9/2022 |
1.0.8 | 1,194 | 6/8/2022 |
1.0.7 | 1,945 | 5/13/2022 |
1.0.6 | 831 | 5/5/2022 |
1.0.5 | 3,901 | 4/8/2022 |
1.0.4 | 2,093 | 3/23/2022 |
1.0.3 | 1,962 | 3/9/2022 |
1.0.2 | 664 | 3/7/2022 |
1.0.1 | 649 | 3/7/2022 |
1.0.0 | 870 | 2/27/2022 |
1.0.0-alpha.14 | 199 | 2/24/2022 |
1.0.0-alpha.13 | 187 | 2/24/2022 |
1.0.0-alpha.12 | 191 | 2/24/2022 |
1.0.0-alpha.11 | 175 | 2/21/2022 |