pauldeen79.QueryFramework.InMemory 0.13.17

dotnet add package pauldeen79.QueryFramework.InMemory --version 0.13.17
                    
NuGet\Install-Package pauldeen79.QueryFramework.InMemory -Version 0.13.17
                    
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="pauldeen79.QueryFramework.InMemory" Version="0.13.17" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="pauldeen79.QueryFramework.InMemory" Version="0.13.17" />
                    
Directory.Packages.props
<PackageReference Include="pauldeen79.QueryFramework.InMemory" />
                    
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 pauldeen79.QueryFramework.InMemory --version 0.13.17
                    
#r "nuget: pauldeen79.QueryFramework.InMemory, 0.13.17"
                    
#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 pauldeen79.QueryFramework.InMemory@0.13.17
                    
#: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=pauldeen79.QueryFramework.InMemory&version=0.13.17
                    
Install as a Cake Addin
#tool nuget:?package=pauldeen79.QueryFramework.InMemory&version=0.13.17
                    
Install as a Cake Tool

QueryFramework

Abstraction for executing SELECT queries on Sql Server, built on top of System.Data. (IDbConnection)

Fluent extensions to build queries.

Example using in-memory query provider:

var items = new[]
{
    new MyClass { Property = "A" },
    new MyClass { Property = "B" }
};
var sut = new QueryProvider<MyClass>(items);
var query = new SingleEntityQueryBuilder()
    .Where(nameof(MyClass.Property)).IsEqualTo("B")
    .Build();

var result = sut.Query(query);
// result only contains the second item because of the WHERE clause.

See unit tests for more examples.

Code generation

I am currently not storing generated files in the code repository. To generate, you have to trigger the code generation tool from either Visual Studio (hit F5) or a command prompt. This will replace all generated code.

Command to run code generation (example where you are in the root directory):

dotnet run --project ./src/QueryFramework.CodeGeneration\QueryFramework.CodeGeneration.csproj
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 netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  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 pauldeen79.QueryFramework.InMemory:

Package Downloads
pauldeen79.QueryFramework.FileSystemSearch

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.13.17 179 3/16/2025
0.13.16 148 3/2/2025
0.13.15 164 2/18/2025
0.13.14 155 2/15/2025
0.13.13 159 12/28/2024
0.13.12 152 12/27/2024
0.13.11 163 12/18/2024
0.13.10 162 10/30/2024
0.13.9 187 10/18/2024
0.13.8 161 9/21/2024
0.13.7 170 9/13/2024
0.13.5 183 5/13/2024
0.13.4 206 5/5/2024
0.13.3 168 5/3/2024
0.13.2 160 5/3/2024
0.13.1 163 5/2/2024
0.13.0 190 4/24/2024
0.12.0 186 4/17/2024
0.11.0 184 3/24/2024
0.10.4 196 3/22/2024
0.10.3 195 3/20/2024
0.10.2 203 3/14/2024
0.10.1 216 3/9/2024
0.9.2 259 12/19/2023
0.9.1 223 11/24/2023
0.9.0 194 11/20/2023
0.8.0 224 9/13/2023
0.7.5 226 9/13/2023
0.7.4 304 5/28/2023
0.7.2 296 5/11/2023
0.7.1 288 5/10/2023
0.7.0 274 5/10/2023
0.6.21 758 8/24/2022
0.6.20 780 5/28/2022
0.6.19 785 5/26/2022
0.6.18 749 5/26/2022
0.6.17 820 4/20/2022
0.6.16 791 4/9/2022
0.6.15 799 4/1/2022
0.6.14 790 4/1/2022
0.6.13 799 3/13/2022
0.6.12 792 3/9/2022
0.6.11 833 3/9/2022
0.6.10 829 3/8/2022
0.6.9 774 3/6/2022
0.6.8 796 3/6/2022
0.6.7 790 3/6/2022
0.6.6 785 2/28/2022
0.6.5 819 2/28/2022
0.6.4 784 2/26/2022
0.6.3 791 2/23/2022
0.6.2 787 2/22/2022
0.6.1 827 2/8/2022
0.6.0 796 2/7/2022
0.5.20 550 2/5/2022
0.5.19 545 2/5/2022
0.5.18 531 2/4/2022
0.5.17 559 2/4/2022
0.5.16 386 1/2/2022
0.5.15 381 12/19/2021
0.5.14 368 12/18/2021
0.5.13 368 12/17/2021
0.5.12 391 12/16/2021
0.5.11 399 12/13/2021
0.5.10 398 12/10/2021
0.5.9 394 12/10/2021
0.5.8 373 12/10/2021
0.5.7 394 12/10/2021
0.5.6 612 12/9/2021
0.5.5 397 11/30/2021
0.5.4 407 11/28/2021
0.5.3 405 11/27/2021
0.5.2 1,607 11/26/2021
0.5.1 1,458 11/26/2021
0.5.0 1,496 11/26/2021
0.4.10 3,095 11/25/2021
0.4.9 3,246 11/24/2021
0.4.8 404 11/23/2021
0.4.7 373 11/23/2021
0.4.6 894 11/21/2021
0.4.5 1,155 11/20/2021
0.4.4 1,243 11/20/2021
0.4.3 862 11/19/2021
0.4.2 446 11/18/2021
0.4.1 402 11/18/2021
0.4.0 409 11/18/2021
0.3.0 403 11/14/2021
0.2.0 441 11/1/2021
0.1.2 418 10/23/2021
0.1.1 432 10/23/2021