Vali-Flow.Abstractions 1.1.0

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

Vali-Flow.Abstractions

Provider-agnostic contracts and utilities for the Vali-Flow ecosystem.

This package contains the shared interfaces and helper classes that all Vali-Flow adapters (EF Core, In-Memory, SQL, MongoDB, Elasticsearch, Redis, DynamoDB, and future providers) implement or use.

Contents

  • IQueryEvaluator<T> — Base contract combining IQueryReader<T> and IQueryAggregator<T>
  • IQueryReader<T> — Async read operations (count, exists, get first/last, etc.)
  • IQueryAggregator<T> — Async aggregation operations (min, max, sum, average)
  • IExpressionTranslator<TOutput> — Expression tree to provider-specific format translator
  • ExpressionInspector — Shared expression-tree inspection utilities

Usage

This package is internal to the Vali-Flow ecosystem. End users should not depend on it directly. Instead, use:

  • Vali-Flow for Entity Framework Core
  • Vali-Flow.InMemory for in-memory testing/caching
  • Vali-Flow.Sql for parameterized SQL (Dapper/ADO.NET)
  • Vali-Flow.NoSql.* for NoSQL providers (MongoDB, Elasticsearch, Redis, DynamoDB)

Installation

dotnet add package Vali-Flow.Abstractions

All main packages (Vali-Flow, Vali-Flow.InMemory, Vali-Flow.Sql) automatically include Vali-Flow.Abstractions as a transitive dependency.


Licensed under the MIT License.

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

NuGet packages (4)

Showing the top 4 NuGet packages that depend on Vali-Flow.Abstractions:

Package Downloads
Vali-Flow

Vali-Flow is a .NET library that simplifies data access in Entity Framework Core applications via a fluent specification API. Provides ValiFlowEvaluator for querying and writing data, QuerySpecification and BasicSpecification for defining query criteria, and bulk operation support via EFCore.BulkExtensions.

Vali-Flow.InMemory

Synchronous in-memory evaluator for Vali-Flow.Core — filter, page, aggregate and write in-memory collections using the same fluent ValiFlow<T> specification API. Ideal for unit testing and caching layers without a database dependency.

Vali-Flow.NoSql

Provider-agnostic NoSql IR for Vali-Flow.Core — converts expression trees to a neutral condition node tree that can be translated to MongoDB, Elasticsearch, or any document store.

Vali-Flow.Sql

SQL translator for Vali-Flow.Core — converts ValiFlow<T> expression trees to parameterized SQL for Dapper and ADO.NET. Supports SQL Server, PostgreSQL, MySQL, and SQLite dialects.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.1.0 321 4/14/2026
1.0.0 338 4/12/2026

v1.1.0 — Enhanced documentation and internal contracts alignment with ecosystem refactor.