ReHackt.Linq.AutoMapper
8.0.36
See the version list below for details.
dotnet add package ReHackt.Linq.AutoMapper --version 8.0.36
NuGet\Install-Package ReHackt.Linq.AutoMapper -Version 8.0.36
<PackageReference Include="ReHackt.Linq.AutoMapper" Version="8.0.36" />
paket add ReHackt.Linq.AutoMapper --version 8.0.36
#r "nuget: ReHackt.Linq.AutoMapper, 8.0.36"
// Install ReHackt.Linq.AutoMapper as a Cake Addin #addin nuget:?package=ReHackt.Linq.AutoMapper&version=8.0.36 // Install ReHackt.Linq.AutoMapper as a Cake Tool #tool nuget:?package=ReHackt.Linq.AutoMapper&version=8.0.36
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. |
-
net8.0
- AutoMapper (>= 13.0.1)
- AutoMapper.Extensions.ExpressionMapping (>= 7.0.2)
- ReHackt.Linq (>= 8.0.36)
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.46 | 156 | 10/13/2024 |
8.0.45 | 106 | 10/11/2024 |
8.0.44 | 90 | 10/11/2024 |
8.0.43 | 96 | 10/10/2024 |
8.0.42 | 112 | 10/10/2024 |
8.0.41 | 98 | 10/8/2024 |
8.0.40 | 101 | 10/7/2024 |
8.0.39 | 114 | 10/7/2024 |
8.0.38 | 98 | 10/7/2024 |
8.0.37 | 94 | 10/7/2024 |
8.0.36 | 103 | 10/3/2024 |
8.0.35 | 107 | 10/3/2024 |
8.0.34 | 100 | 10/2/2024 |
8.0.33 | 127 | 10/2/2024 |
8.0.32 | 139 | 9/27/2024 |
8.0.31 | 152 | 9/12/2024 |
8.0.30 | 128 | 9/12/2024 |
8.0.29 | 116 | 9/12/2024 |
8.0.28 | 147 | 9/3/2024 |
8.0.27 | 152 | 8/26/2024 |
8.0.26 | 97 | 8/4/2024 |
8.0.25 | 105 | 8/4/2024 |
8.0.24 | 79 | 8/4/2024 |
8.0.23 | 97 | 8/3/2024 |
8.0.22 | 88 | 8/3/2024 |
8.0.21 | 118 | 7/9/2024 |
8.0.20 | 146 | 7/6/2024 |
8.0.19 | 123 | 7/4/2024 |
8.0.18 | 213 | 6/17/2024 |
8.0.17 | 159 | 6/3/2024 |
8.0.16 | 127 | 6/3/2024 |
8.0.15 | 142 | 5/29/2024 |
8.0.14 | 125 | 5/15/2024 |
8.0.13 | 234 | 4/16/2024 |
8.0.12 | 138 | 4/10/2024 |
8.0.11 | 197 | 3/14/2024 |
8.0.10 | 178 | 2/21/2024 |
8.0.9 | 217 | 2/15/2024 |
8.0.8 | 214 | 2/8/2024 |
8.0.7 | 226 | 2/6/2024 |
8.0.6 | 223 | 1/29/2024 |
8.0.5 | 240 | 1/18/2024 |
8.0.4 | 243 | 1/16/2024 |
8.0.3 | 253 | 1/15/2024 |
8.0.2 | 234 | 1/14/2024 |
8.0.1 | 239 | 1/12/2024 |
8.0.0 | 258 | 12/19/2023 |
7.3.13 | 333 | 11/14/2023 |
7.3.12 | 285 | 11/13/2023 |
7.3.11 | 425 | 9/16/2023 |
7.3.10 | 326 | 9/15/2023 |
7.3.9 | 451 | 8/16/2023 |
7.3.8 | 458 | 7/12/2023 |
7.3.7 | 363 | 7/12/2023 |
7.3.6 | 348 | 7/10/2023 |
7.3.5 | 444 | 7/3/2023 |
7.3.4 | 456 | 6/8/2023 |
7.3.3 | 468 | 5/29/2023 |
7.3.2 | 603 | 4/27/2023 |
7.3.1 | 461 | 4/27/2023 |
7.3.0 | 487 | 4/17/2023 |
7.2.1 | 489 | 4/7/2023 |
7.2.0 | 467 | 4/6/2023 |
7.1.4 | 528 | 3/30/2023 |
7.1.3 | 509 | 3/29/2023 |
7.1.2 | 519 | 3/29/2023 |
7.1.0 | 702 | 3/28/2023 |
7.0.2 | 916 | 2/19/2023 |
7.0.1 | 555 | 2/1/2023 |
7.0.0 | 1,028 | 12/2/2022 |
1.1.3 | 2,699 | 7/5/2022 |
1.1.2 | 449 | 6/23/2022 |
1.1.1 | 1,454 | 6/23/2022 |
1.1.0 | 1,579 | 6/9/2022 |
1.0.9 | 1,023 | 6/9/2022 |
1.0.8 | 1,127 | 6/8/2022 |
1.0.7 | 1,886 | 5/13/2022 |
1.0.6 | 773 | 5/5/2022 |
1.0.5 | 3,828 | 4/8/2022 |
1.0.4 | 2,032 | 3/23/2022 |
1.0.3 | 1,897 | 3/9/2022 |
1.0.2 | 596 | 3/7/2022 |
1.0.1 | 589 | 3/7/2022 |
1.0.0 | 806 | 2/27/2022 |
1.0.0-alpha.14 | 132 | 2/24/2022 |
1.0.0-alpha.13 | 122 | 2/24/2022 |
1.0.0-alpha.12 | 134 | 2/24/2022 |
1.0.0-alpha.11 | 122 | 2/21/2022 |