ReHackt.Linq.AutoMapper 8.0.108

dotnet add package ReHackt.Linq.AutoMapper --version 8.0.108
                    
NuGet\Install-Package ReHackt.Linq.AutoMapper -Version 8.0.108
                    
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.AutoMapper" Version="8.0.108" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="ReHackt.Linq.AutoMapper" Version="8.0.108" />
                    
Directory.Packages.props
<PackageReference Include="ReHackt.Linq.AutoMapper" />
                    
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.AutoMapper --version 8.0.108
                    
#r "nuget: ReHackt.Linq.AutoMapper, 8.0.108"
                    
#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.
#addin nuget:?package=ReHackt.Linq.AutoMapper&version=8.0.108
                    
Install ReHackt.Linq.AutoMapper as a Cake Addin
#tool nuget:?package=ReHackt.Linq.AutoMapper&version=8.0.108
                    
Install ReHackt.Linq.AutoMapper 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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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.108 173 3 days ago
8.0.107 220 9 days ago
8.0.106 150 14 days ago
8.0.105 121 14 days ago
8.0.104 115 14 days ago
8.0.103 119 14 days ago
8.0.102 136 15 days ago
8.0.101 136 15 days ago
8.0.100 139 15 days ago
8.0.99 140 15 days ago
8.0.98 142 15 days ago
8.0.97 137 15 days ago
8.0.96 141 15 days ago
8.0.95 154 16 days ago
8.0.94 149 16 days ago
8.0.93 497 18 days ago
8.0.92 181 25 days ago
8.0.91 175 a month ago
8.0.90 165 a month ago
8.0.89 156 a month ago
8.0.88 163 a month ago
8.0.87 203 a month ago
8.0.86 199 a month ago
8.0.85 250 a month ago
8.0.84 135 2 months ago
8.0.83 118 2 months ago
8.0.82 114 2 months ago
8.0.81 108 2 months ago
8.0.80 123 2 months ago
8.0.79 127 2 months ago
8.0.78 130 2 months ago
8.0.77 117 2 months ago
8.0.76 119 2 months ago
8.0.75 132 2 months ago
8.0.74 113 2 months ago
8.0.73 126 2 months ago
8.0.72 123 2 months ago
8.0.71 156 2 months ago
8.0.70 130 2 months ago
8.0.69 121 3 months ago
8.0.68 90 3 months ago
8.0.67 121 3 months ago
8.0.66 118 3 months ago
8.0.65 159 3 months ago
8.0.64 164 4 months ago
8.0.63 132 4 months ago
8.0.62 133 4 months ago
8.0.61 171 4 months ago
8.0.60 118 4 months ago
8.0.59 147 5 months ago
8.0.58 136 5 months ago
8.0.57 129 5 months ago
8.0.56 124 5 months ago
8.0.55 134 5 months ago
8.0.54 129 5 months ago
8.0.53 117 5 months ago
8.0.52 119 5 months ago
8.0.51 117 5 months ago
8.0.50 116 5 months ago
8.0.49 121 5 months ago
8.0.48 119 5 months ago
8.0.47 119 5 months ago
8.0.46 207 6 months ago
8.0.45 135 6 months ago
8.0.44 118 6 months ago
8.0.43 124 6 months ago
8.0.42 139 6 months ago
8.0.41 125 6 months ago
8.0.40 126 6 months ago
8.0.39 139 6 months ago
8.0.38 124 6 months ago
8.0.37 121 6 months ago
8.0.36 126 6 months ago
8.0.35 130 6 months ago
8.0.34 131 6 months ago
8.0.33 152 6 months ago
8.0.32 161 7 months ago
8.0.31 175 7 months ago
8.0.30 147 7 months ago
8.0.29 137 7 months ago
8.0.28 167 7 months ago
8.0.27 173 8 months ago
8.0.26 120 8 months ago
8.0.25 124 8 months ago
8.0.24 98 8 months ago
8.0.23 121 8 months ago
8.0.22 105 8 months ago
8.0.21 143 9 months ago
8.0.20 165 9 months ago
8.0.19 140 9 months ago
8.0.18 332 10 months ago
8.0.17 179 6/3/2024
8.0.16 141 6/3/2024
8.0.15 158 5/29/2024
8.0.14 145 5/15/2024
8.0.13 247 4/16/2024
8.0.12 151 4/10/2024
8.0.11 210 3/14/2024
8.0.10 195 2/21/2024
8.0.9 240 2/15/2024
8.0.8 230 2/8/2024
8.0.7 244 2/6/2024
8.0.6 237 1/29/2024
8.0.5 255 1/18/2024
8.0.4 255 1/16/2024
8.0.3 269 1/15/2024
8.0.2 247 1/14/2024
8.0.1 253 1/12/2024
8.0.0 273 12/19/2023
7.3.13 343 11/14/2023
7.3.12 298 11/13/2023
7.3.11 434 9/16/2023
7.3.10 335 9/15/2023
7.3.9 460 8/16/2023
7.3.8 468 7/12/2023
7.3.7 371 7/12/2023
7.3.6 357 7/10/2023
7.3.5 454 7/3/2023
7.3.4 469 6/8/2023
7.3.3 483 5/29/2023
7.3.2 616 4/27/2023
7.3.1 474 4/27/2023
7.3.0 501 4/17/2023
7.2.1 503 4/7/2023
7.2.0 481 4/6/2023
7.1.4 543 3/30/2023
7.1.3 524 3/29/2023
7.1.2 534 3/29/2023
7.1.0 716 3/28/2023
7.0.2 930 2/19/2023
7.0.1 570 2/1/2023
7.0.0 1,052 12/2/2022
1.1.3 2,720 7/5/2022
1.1.2 470 6/23/2022
1.1.1 1,477 6/23/2022
1.1.0 1,608 6/9/2022
1.0.9 1,042 6/9/2022
1.0.8 1,148 6/8/2022
1.0.7 1,908 5/13/2022
1.0.6 794 5/5/2022
1.0.5 3,861 4/8/2022
1.0.4 2,055 3/23/2022
1.0.3 1,921 3/9/2022
1.0.2 619 3/7/2022
1.0.1 612 3/7/2022
1.0.0 832 2/27/2022
1.0.0-alpha.14 152 2/24/2022
1.0.0-alpha.13 143 2/24/2022
1.0.0-alpha.12 154 2/24/2022
1.0.0-alpha.11 141 2/21/2022