FlexQuery.NET.EntityFrameworkCore 3.1.1

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

FlexQuery.NET.EntityFrameworkCore

NuGet Version

Async execution, filtered includes, and projection for EF Core.

When to Use This Package

Install this package when your data access layer uses Entity Framework Core's DbContext. It enables the FlexQueryAsync extension methods that execute the full query pipeline — parse, validate, filter, sort, page, project — in a single async call against your DbSet<T>.

Installation

dotnet add package FlexQuery.NET.EntityFrameworkCore

Quick Start

using FlexQuery.NET.EntityFrameworkCore;

[HttpGet("users")]
public async Task<IActionResult> GetUsers([FromQuery] FlexQueryParameters parameters)
{
    var result = await _context.Users.FlexQueryAsync(parameters, options =>
    {
        options.AllowedFields = new HashSet<string> { "Id", "Name", "Email", "Status" };
        options.StrictFieldValidation = true;
    });

    return Ok(result);
}

Features

  • FlexQueryAsync — Unified parse-validate-execute pipeline with configurable QueryExecutionOptions
  • Filtered Includes — Include related collections with inline WHERE filters via ApplyFilteredIncludes<T>()
  • Projection — Nested, Flat, and FlatMixed projection modes
  • Execution OptionsUseSplitQuery to avoid cartesian explosion, UseNoTracking for read-only queries
  • SQL PreviewToSqlPreview() to inspect the generated SQL without executing
  • Diagnostics — Pass Action<FlexQueryExecutionConfig> to observe pipeline stages
  • EF Core OperatorsUseEfCoreOperators() to register LIKE operator handler for EF Core translation

Documentation

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  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 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 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
4.0.0-preview.3 35 7/18/2026
4.0.0-preview.2 38 7/14/2026
4.0.0-preview.1 51 7/12/2026
3.1.1 122 7/4/2026
3.1.0 132 6/26/2026
3.0.6 130 6/24/2026
3.0.5 133 6/24/2026
3.0.4 130 6/23/2026
3.0.3 131 6/23/2026
3.0.2 140 6/22/2026
3.0.1 136 6/22/2026

- fix: implement stability fixes for pipeline ordering, validation, Dapper case-insensitive and filtered includes
- fix: auto-generate ORDER BY for paging without sort, add tests and docs
- fix: resolve code analysis warnings and add XML documentation
- perf: cache IsScalarType results and IncludeBuilder MethodInfo lookups
- refactor: remove old projection engine and simplify caching
- remove yml
- Add Azure deployment workflow
- Add or update the Azure App Service build and deployment workflow config