FlexQuery.NET.Diagnostics 4.0.0-preview.2

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

FlexQuery.NET.Diagnostics

NuGet Version

Execution diagnostics, observability, and timeline reporting for FlexQuery.NET queries.

When to Use This Package

Install this package when you need to inspect, measure, or monitor FlexQuery.NET execution.

It provides execution listeners, timing reports, and pipeline diagnostics for debugging, performance analysis, and observability.

Installation

dotnet add package FlexQuery.NET.Diagnostics

Quick Start

using FlexQuery.NET.Diagnostics;

var collector = new FlexQueryDiagnosticsCollector();

var result = await _context.Users.FlexQueryAsync(parameters, options =>
{
    options.AllowedFields = new HashSet<string> { "Id", "Name" };
}, execution =>
{
    execution.Listener = collector;
});

var report = collector.BuildReport();
Console.WriteLine($"Total: {report.Duration.TotalMs}ms");
Console.WriteLine($"  Parse:    {report.Duration.ParseMs}ms");
Console.WriteLine($"  Translate: {report.Duration.TranslateMs}ms");
Console.WriteLine($"  Database:  {report.Duration.DatabaseMs}ms");
Console.WriteLine($"  Materialize: {report.Duration.MaterializeMs}ms");

foreach (var entry in report.Timeline)
    Console.WriteLine($"{entry.Stage}: {entry.DurationMs}ms");

Features

  • FlexQueryDiagnosticsCollector — Thread-safe collector capturing all pipeline stage events
  • ConsoleExecutionListener — Writes pipeline stage timing to Console for quick debugging
  • Diagnostics ReportBuildReport() returns FlexQueryDiagnosticsReport with per-stage duration breakdown and timeline
  • 4 Lifecycle EventsQueryParsed, QueryTranslated, QueryExecuted, QueryMaterialized
  • Custom Listeners — Implement IFlexQueryExecutionListener for custom logging, metrics, or OpenTelemetry integration

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 20 7/18/2026
4.0.0-preview.2 37 7/14/2026
4.0.0-preview.1 48 7/12/2026
3.1.1 91 7/4/2026
3.1.0 103 6/26/2026

- chore(ci): remove azure-demo-api workflow
- refactor(options): introduce QueryGovernanceOptions as governance base
- Revert "merge feature branch docs-v4 to main branch (#9)"
- merge feature branch docs-v4 to main branch (#9)
- Merge branch 'main' into feature/docs-v4
- docs: update guide details
- docs: update readme file
- refactor: replace DSL symbolic logical operators with AND/OR keywords
- docs: unify example domain and restructure documentation
- docs: align v4 API references and fix broken doc links
- docs: added open api readme