eQuantic.Linq 3.5.0

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

eQuantic.Linq

The eQuantic.Linq engine in one reference. This is a meta-package: it has no code of its own, it just brings in the framework-free core of the family so you can start with a single dependency.

dotnet add package eQuantic.Linq

You get:

Package What it gives you
eQuantic.Linq.Expressions Serialize any expression tree to JSON and rebuild it; root-anchored inference; DTO→entity casting; predicate composition.
eQuantic.Linq.Web Query-string syntax (filter, orderBy, skip, take, select) parsed into typed expressions, plus code-first typed query builders.
eQuantic.Linq.Specification The composable specification pattern on the v3 engine, including specifications from serialized payloads.

All three target netstandard2.0, net8.0 and net10.0 and pull no framework dependencies — usable in libraries, console apps and workers alike.

When to reference a single package instead

Most apps only need part of the engine — reference the specific package and keep your graph lean:

  • Just serializing/rebuilding expressions → eQuantic.Linq.Expressions.
  • A web API accepting query strings → eQuantic.Linq.Web (+ the ASP.NET Core / Swagger / OpenAPI integration packages, which are not part of this meta-package by design).
  • Domain rules as specifications → eQuantic.Linq.Specification.

Full documentation: https://github.com/eQuantic/core-linq/tree/main/docs

MIT © eQuantic Tech

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on eQuantic.Linq:

Package Downloads
eQuantic.Core.Api.Crud.Client

eQuantic Api CRUD Client Library

eQuantic.Core.Mvc

eQuantic Core MVC Library

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.7.1 77 7/21/2026
3.7.0 47 7/19/2026
3.6.0 43 7/19/2026
3.5.0 53 7/19/2026
2.1.0 2,157 8/29/2025
2.0.0 304 8/28/2025
1.3.4 10,473 8/25/2024
1.3.3 3,274 7/28/2024
1.3.2 1,961 7/22/2024
1.3.1 7,776 1/8/2024
1.2.0 3,632 11/18/2023
1.1.6 5,414 8/13/2023
1.1.5 876 8/13/2023
1.1.4 368 8/13/2023
1.1.3 1,977 7/2/2023
1.1.2 3,562 10/15/2022
1.1.1 1,537 9/15/2022
1.1.0 1,979 8/28/2022
1.0.0 1,511 8/27/2022

v3 revives eQuantic.Linq as the pure-core meta-package for the family (Expressions + Web + Specification).