ReHackt.Linq.AutoMapper 1.0.0-alpha.12

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

ReHackt.Linq.Extensions

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

Install

Get it on <a href="https://www.nuget.org/packages/ReHackt.Linq.Extensions"><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
  • Comparison operators: eq, gt, gte, lt, lte, 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)

Not yet supported (planned)

  • Boolean operators: not

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

OrderBy, OrderByDescending, ThenBy, ThenByDescending

These methods allow you to sort dynamically an input sequence according to a property from each element whose name is taken as a string. OrderBy and OrderByDescending can take a variable number of arguments in order to sort the sequence according to several properties in the order of the arguments.

For example

source.OrderBy("Score", "Year", "Title")

Is equivalent to

source
    .OrderBy(x => x.Score)
    .ThenBy(x => x.Year)
    .ThenBy(x => x.Title)

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 net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  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. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos 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.138 341 11/14/2025
8.0.137 351 11/13/2025
8.0.136 379 11/12/2025
8.0.135 288 10/15/2025
8.0.134 258 10/7/2025
8.0.133 265 9/10/2025
8.0.132 235 9/10/2025
8.0.131 238 9/10/2025
8.0.130 247 9/10/2025
8.0.129 264 9/1/2025
8.0.128 268 8/20/2025
8.0.127 268 8/18/2025
8.0.126 293 8/15/2025
8.0.125 232 8/15/2025
8.0.124 252 8/14/2025
8.0.123 245 8/14/2025
8.0.122 253 8/14/2025
8.0.121 259 8/13/2025
8.0.120 331 8/5/2025
8.0.119 250 8/4/2025
8.0.118 186 8/1/2025
8.0.117 203 7/31/2025
8.0.116 191 7/31/2025
8.0.115 268 7/17/2025
8.0.114 925 6/11/2025
8.0.113 320 5/28/2025
8.0.112 314 5/19/2025
8.0.111 373 5/13/2025
8.0.110 421 4/17/2025
8.0.109 334 4/16/2025
8.0.108 356 4/9/2025
8.0.107 341 4/3/2025
8.0.106 301 3/29/2025
8.0.105 246 3/29/2025
8.0.104 268 3/29/2025
8.0.103 231 3/29/2025
8.0.102 272 3/28/2025
8.0.101 247 3/28/2025
8.0.100 298 3/28/2025
8.0.99 266 3/28/2025
8.0.98 260 3/28/2025
8.0.97 256 3/28/2025
8.0.96 270 3/28/2025
8.0.95 280 3/27/2025
8.0.94 271 3/27/2025
8.0.93 608 3/25/2025
8.0.92 290 3/18/2025
8.0.91 295 3/17/2025
8.0.90 306 3/17/2025
8.0.89 295 3/16/2025
8.0.88 265 3/16/2025
8.0.87 353 3/11/2025
8.0.86 342 3/11/2025
8.0.85 400 3/6/2025
8.0.84 277 2/23/2025
8.0.83 263 2/23/2025
8.0.82 219 2/22/2025
8.0.81 201 2/22/2025
8.0.80 222 2/19/2025
8.0.79 256 2/19/2025
8.0.78 230 2/18/2025
8.0.77 246 2/14/2025
8.0.76 219 2/14/2025
8.0.75 229 2/12/2025
8.0.74 239 2/11/2025
8.0.73 230 2/11/2025
8.0.72 219 2/11/2025
8.0.71 261 2/3/2025
8.0.70 258 1/30/2025
8.0.69 226 1/20/2025
8.0.68 185 1/14/2025
8.0.67 213 1/6/2025
8.0.66 212 1/6/2025
8.0.65 286 1/3/2025
8.0.64 292 12/20/2024
8.0.63 251 12/20/2024
8.0.62 250 12/19/2024
8.0.61 302 12/16/2024
8.0.60 213 12/13/2024
8.0.59 265 11/26/2024
8.0.58 258 11/26/2024
8.0.57 228 11/25/2024
8.0.56 227 11/25/2024
8.0.55 236 11/23/2024
8.0.54 231 11/21/2024
8.0.53 249 11/19/2024
8.0.52 238 11/19/2024
8.0.51 226 11/19/2024
8.0.50 207 11/18/2024
8.0.49 252 11/14/2024
8.0.48 209 11/14/2024
8.0.47 220 11/13/2024
8.0.46 306 10/13/2024
8.0.45 254 10/11/2024
8.0.44 231 10/11/2024
8.0.43 235 10/10/2024
8.0.42 266 10/10/2024
8.0.41 257 10/8/2024
8.0.40 220 10/7/2024
8.0.39 244 10/7/2024
8.0.38 219 10/7/2024
8.0.37 227 10/7/2024
8.0.36 226 10/3/2024
8.0.35 218 10/3/2024
8.0.34 246 10/2/2024
8.0.33 269 10/2/2024
8.0.32 274 9/27/2024
8.0.31 290 9/12/2024
8.0.30 236 9/12/2024
8.0.29 256 9/12/2024
8.0.28 292 9/3/2024
8.0.27 276 8/26/2024
8.0.26 221 8/4/2024
8.0.25 215 8/4/2024
8.0.24 198 8/4/2024
8.0.23 229 8/3/2024
8.0.22 236 8/3/2024
8.0.21 241 7/9/2024
8.0.20 255 7/6/2024
8.0.19 243 7/4/2024
8.0.18 552 6/17/2024
8.0.17 282 6/3/2024
8.0.16 253 6/3/2024
8.0.15 260 5/29/2024
8.0.14 250 5/15/2024
8.0.13 340 4/16/2024
8.0.12 276 4/10/2024
8.0.11 305 3/14/2024
8.0.10 288 2/21/2024
8.0.9 345 2/15/2024
8.0.8 318 2/8/2024
8.0.7 340 2/6/2024
8.0.6 356 1/29/2024
8.0.5 352 1/18/2024
8.0.4 367 1/16/2024
8.0.3 374 1/15/2024
8.0.2 339 1/14/2024
8.0.1 335 1/12/2024
8.0.0 403 12/19/2023
7.3.13 418 11/14/2023
7.3.12 357 11/13/2023
7.3.11 520 9/16/2023
7.3.10 426 9/15/2023
7.3.9 569 8/16/2023
7.3.8 573 7/12/2023
7.3.7 473 7/12/2023
7.3.6 480 7/10/2023
7.3.5 558 7/3/2023
7.3.4 580 6/8/2023
7.3.3 617 5/29/2023
7.3.2 726 4/27/2023
7.3.1 615 4/27/2023
7.3.0 624 4/17/2023
7.2.1 616 4/7/2023
7.2.0 622 4/6/2023
7.1.4 666 3/30/2023
7.1.3 642 3/29/2023
7.1.2 661 3/29/2023
7.1.0 873 3/28/2023
7.0.2 1,100 2/19/2023
7.0.1 683 2/1/2023
7.0.0 1,158 12/2/2022
1.1.3 2,888 7/5/2022
1.1.2 597 6/23/2022
1.1.1 1,627 6/23/2022
1.1.0 1,778 6/9/2022
1.0.9 1,210 6/9/2022
1.0.8 1,314 6/8/2022
1.0.7 2,093 5/13/2022
1.0.6 920 5/5/2022
1.0.5 4,160 4/8/2022
1.0.4 2,243 3/23/2022
1.0.3 2,125 3/9/2022
1.0.2 752 3/7/2022
1.0.1 728 3/7/2022
1.0.0 967 2/27/2022
1.0.0-alpha.14 264 2/24/2022
1.0.0-alpha.13 250 2/24/2022
1.0.0-alpha.12 237 2/24/2022
1.0.0-alpha.11 224 2/21/2022