FlexQuery.NET.Parsers.Fql
4.0.0-rc.1
dotnet add package FlexQuery.NET.Parsers.Fql --version 4.0.0-rc.1
NuGet\Install-Package FlexQuery.NET.Parsers.Fql -Version 4.0.0-rc.1
<PackageReference Include="FlexQuery.NET.Parsers.Fql" Version="4.0.0-rc.1" />
<PackageVersion Include="FlexQuery.NET.Parsers.Fql" Version="4.0.0-rc.1" />
<PackageReference Include="FlexQuery.NET.Parsers.Fql" />
paket add FlexQuery.NET.Parsers.Fql --version 4.0.0-rc.1
#r "nuget: FlexQuery.NET.Parsers.Fql, 4.0.0-rc.1"
#:package FlexQuery.NET.Parsers.Fql@4.0.0-rc.1
#addin nuget:?package=FlexQuery.NET.Parsers.Fql&version=4.0.0-rc.1&prerelease
#tool nuget:?package=FlexQuery.NET.Parsers.Fql&version=4.0.0-rc.1&prerelease
FlexQuery.NET.Parsers.Fql
FQL (FlexQuery Language) parser for FlexQuery.NET — a SQL-inspired query syntax.
When to Use This Package
Install this package when you want to support FQL-style filter syntax in your API — a readable, SQL-inspired alternative to the native DSL. After registration, clients send FQL expressions in the filter (and related) parameters and they are parsed through the standard FlexQuery pipeline.
Installation
dotnet add package FlexQuery.NET.Parsers.Fql
Registration
Call Fql.Register() once at startup, then select the FQL syntax globally or per request:
using FlexQuery.NET;
using FlexQuery.NET.Parsers.Fql;
Fql.Register(); // registers the FQL parser in the global parser registry
// Option A: set FQL as the application-wide default syntax
FlexQueryCore.Configure(options =>
{
options.DefaultQuerySyntax = QuerySyntax.Fql;
});
// Option B: choose FQL per request
options.QuerySyntax = QuerySyntax.Fql;
Quick Start
GET /api/users?filter=Status = 'Active' AND Age >= 18&sort=Name asc&page=1&pageSize=20
FQL Syntax Examples
Status = 'Active'
Age >= 18
Status = 'Active' AND Age >= 18
Category = 'Electronics' OR Category = 'Books'
Name CONTAINS 'john'
Status IN ('Active', 'Pending')
DeletedAt IS NULL
Age BETWEEN 18 AND 30
Features
- Full Parameter Support — Parses
filter,select,sort,aggregate, andhavingexpressions into the FlexQuery model - Supported Operators —
=,>=,>,<=,<,!=, plusIN,NOT IN,CONTAINS,STARTSWITH,ENDSWITH,LIKE,IS NULL,BETWEEN, and collection quantifiers (ANY,ALL,COUNT) - Familiar Keywords —
AND,OR,ASC,DESC, aggregate functionsSUM,AVG,MIN,MAX,COUNT, andASaliases - Integration — Registers into the global parser registry so FQL queries flow through the same validation and execution pipeline
Related Packages
- FlexQuery.NET — Core query engine
- FlexQuery.NET.Parsers.MiniOData — Alternative parser for OData syntax
Documentation
| Product | Versions 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. |
-
net10.0
- FlexQuery.NET (>= 4.0.0-rc.1)
-
net6.0
- FlexQuery.NET (>= 4.0.0-rc.1)
-
net8.0
- FlexQuery.NET (>= 4.0.0-rc.1)
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-rc.1 | 51 | 9/10/2026 |
| 4.0.0-preview.3 | 76 | 7/18/2026 |
| 4.0.0-preview.2 | 63 | 7/14/2026 |
| 4.0.0-preview.1 | 64 | 7/12/2026 |
| 4.0.0-beta1.0 | 54 | 9/8/2026 |
- docs(readme): update root and package READMEs for v4 APIs
- merge Feature/docs site v4 (#13)
- docs(site): refine docs navigation and readability behaviors
- docs(site): redesign the landing page around the query pipeline
- docs: add v4 documentation site (Next.js + Fumadocs)