Datafication.Core 1.0.10

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

Datafication.Core

High-performance in-memory DataFrame-like data processing library for .NET.

Key Features

  • High Performance: SIMD-accelerated operations and minimal memory allocations
  • Fluent API: Chainable methods for elegant data transformation pipelines
  • Type Safe: Strongly-typed columns with full .NET type system support
  • Expression Engine: Computed columns using powerful expression syntax
  • Rich Operations: Filtering, grouping, aggregation, and transformation operations
  • Window Functions: Moving averages, cumulative totals, ranking, and lag/lead
  • Zero Dependencies: Core library has no external dependencies

Installation

dotnet add package Datafication.Core

Quick Start

using Datafication.Core.Data;

// Create a DataBlock
var employees = new DataBlock();
employees.AddColumn(new DataColumn("Name", typeof(string)));
employees.AddColumn(new DataColumn("Department", typeof(string)));
employees.AddColumn(new DataColumn("Salary", typeof(decimal)));

employees.AddRow(new object[] { "Alice", "Engineering", 95000m });
employees.AddRow(new object[] { "Bob", "Marketing", 72000m });

// Transform data with fluent API
var result = employees
    .Where("Department", "Engineering")
    .Compute("Bonus", "Salary * 0.10")
    .Sort(SortDirection.Descending, "Salary")
    .Head(10);

Documentation

For samples, usage examples, and source code, visit our GitHub repository: github.com/DataficationSDK/Datafication.Core

If you find this library useful, consider giving it a star!

For full API documentation and guides: datafication.co

License

Licensed under the Datafication SDK License Agreement.

  • Free: <5 developers AND <$500K annual revenue
  • Commercial license required: 5+ developers OR >$500K annual revenue

For licensing inquiries: support@datafication.co

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 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 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.
  • net8.0

    • No dependencies.

NuGet packages (9)

Showing the top 5 NuGet packages that depend on Datafication.Core:

Package Downloads
Datafication.ParquetConnector

Apache Parquet columnar format connector for Datafication DataBlocks

Datafication.CsvConnector

High-performance CSV file connector for Datafication DataBlocks

Datafication.Storage.Velocity

Disk-backed columnar storage with SIMD-accelerated queries for large-scale DataBlocks

Datafication.AdoConnector

Universal database connector for SQL Server, PostgreSQL, MySQL, and ADO.NET providers

Datafication.S3Connector

AWS S3 and S3-compatible storage connector for Datafication DataBlocks

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.11 28 2/2/2026
1.0.10 47 2/1/2026
1.0.9 232 1/24/2026
1.0.8 202 1/18/2026
1.0.7 205 1/14/2026
1.0.6 199 1/14/2026
1.0.5 196 1/13/2026
1.0.4 203 1/13/2026
1.0.3 195 1/13/2026
1.0.2 205 1/13/2026
1.0.1 209 1/9/2026