Flowthru.Misc.DataFrames 0.26.0

The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package Flowthru.Misc.DataFrames --version 0.26.0
                    
NuGet\Install-Package Flowthru.Misc.DataFrames -Version 0.26.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="Flowthru.Misc.DataFrames" Version="0.26.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Flowthru.Misc.DataFrames" Version="0.26.0" />
                    
Directory.Packages.props
<PackageReference Include="Flowthru.Misc.DataFrames" />
                    
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 Flowthru.Misc.DataFrames --version 0.26.0
                    
#r "nuget: Flowthru.Misc.DataFrames, 0.26.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 Flowthru.Misc.DataFrames@0.26.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=Flowthru.Misc.DataFrames&version=0.26.0
                    
Install as a Cake Addin
#tool nuget:?package=Flowthru.Misc.DataFrames&version=0.26.0
                    
Install as a Cake Tool

Flowthru.Misc.DataFrames

A framework-agnostic, strongly-typed DataFrame abstraction. TypedFrame<T> is a phantom-typed IQueryable<T>: Where, Select, Join, and grouping build an expression tree against your schema type instead of running anything, and a pluggable IFrameQueryProvider translates that tree into native operations on whatever backend you wire up (Spark columns, ML.NET transforms, and so on) without materializing rows into .NET objects. The type parameter carries schema information through every operation, so a misspelled column or a type-mismatched join is a compile error. It carries no Flowthru.Core dependency and is usable standalone.

coverage

Install

dotnet add package Flowthru.Misc.DataFrames

Root a TypedFrame<T> on a provider, then compose typed operators — the chain is captured as an expression tree and only translated when the provider materializes it:

// `provider` is your IFrameQueryProvider implementation over the native backend.
var people = new TypedFrame<Person>(provider);

var adults = people
    .Where(p => p.Age >= 18)
    .Select(p => new PersonSummary { Name = p.Name, Age = p.Age });

// Materialization is the provider's job — enumerating triggers translation + execution.
foreach (var summary in adults) { /* … */ }

The schema type (Person here) is annotated with [FlowthruSchema] to participate in the compile-time and pre-flight validation a translator plugin can layer on top.

Product Compatible and additional computed target framework versions.
.NET 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.
  • net10.0

    • No dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Flowthru.Misc.DataFrames:

Package Downloads
Flowthru.Extensions.Spark

Apache Spark integration for Flowthru via typed DataFrame wrappers over Spark.NET

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.26.0-preview.112 0 6/5/2026 0.26.0-preview.112 is deprecated because it has critical bugs.
0.25.0 44 6/2/2026
0.25.0-preview.110 39 6/2/2026
0.24.0-preview.108 38 6/2/2026
0.21.0 92 5/24/2026
0.21.0-preview.101 54 5/24/2026
0.20.0 91 5/23/2026
0.20.0-preview.100 47 5/23/2026
0.19.0-preview.99 62 5/23/2026
0.18.5-preview.98 64 5/22/2026
0.18.4-preview.97 46 5/22/2026
0.18.3 95 5/20/2026
0.18.3-preview.95 53 5/19/2026
0.18.2 96 5/18/2026
0.18.2-preview.93 54 5/18/2026
0.18.1 99 5/15/2026
0.18.1-preview.92 44 5/14/2026
0.18.0-preview.91 45 5/14/2026
0.17.5 91 5/13/2026
Loading failed