VOOZH about

URL: https://www.nuget.org/packages/Platform.Data.Doublets/

⇱ NuGet Gallery | Platform.Data.Doublets 0.18.1




👁 Image
Platform.Data.Doublets 0.18.1

dotnet add package Platform.Data.Doublets --version 0.18.1
 
 
NuGet\Install-Package Platform.Data.Doublets -Version 0.18.1
 
 
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="Platform.Data.Doublets" Version="0.18.1" />
 
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Platform.Data.Doublets" Version="0.18.1" />
 
Directory.Packages.props
<PackageReference Include="Platform.Data.Doublets" />
 
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 Platform.Data.Doublets --version 0.18.1
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Platform.Data.Doublets, 0.18.1"
 
 
#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 Platform.Data.Doublets@0.18.1
 
 
#: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=Platform.Data.Doublets&version=0.18.1
 
Install as a Cake Addin
#tool nuget:?package=Platform.Data.Doublets&version=0.18.1
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

👁 Gitpod

👁 NuGet Version and Downloads count
👁 Actions Status
👁 Codacy Badge
👁 CodeFactor

Data.Doublets ()

LinksPlatform's Platform.Data.Doublets Class Library.

Namespace: Platform.Data.Doublets

Forked from: Konard/LinksPlatform/Platform/Platform.Data.Doublets

NuGet package: Platform.Data.Doublets

Example | Run .NET fiddle

using System;
using Platform.Data;
using Platform.Data.Doublets;
using Platform.Data.Doublets.Memory.United.Generic;

// A doublet links store is mapped to "db.links" file:
using var links = new UnitedMemoryLinks<uint>("db.links");

// A creation of the doublet link: 
var link = links.Create();

// The link is updated to reference itself twice (as a source and a target):
link = links.Update(link, newSource: link, newTarget: link);

// Read operations:
Console.WriteLine($"The number of links in the data store is {links.Count()}.");
Console.WriteLine("Data store contents:");
var any = links.Constants.Any; // Means any link address or no restriction on link address
// Arguments of the query are interpreted as restrictions
var query = new Link<uint>(index: any, source: any, target: any);
links.Each((link) => {
 Console.WriteLine(links.Format(link));
 return links.Constants.Continue;
}, query);

// The link's content reset:
link = links.Update(link, newSource: default, newTarget: default);

// The link deletion:
links.Delete(link);

SQLite vs Doublets

👁 Result of performance comparison between SQLite and Doublets

Documentation

PDF file with code for e-readers.

Dependency graph [C#]

👁 C# dependency graph SVG image

Dependency graph [C++]

👁 C++ dependency graph SVG image

Depend on

Support

Ask questions at stackoverflow.com/tags/links-platform (or with tag links-platform) to get our free support.

You can also get real-time support on our official Discord server.

Product Versions Compatible and additional computed target framework versions.
.NET net8.0 net8.0 is compatible.  net8.0-android net8.0-android was computed.  net8.0-browser net8.0-browser was computed.  net8.0-ios net8.0-ios was computed.  net8.0-maccatalyst net8.0-maccatalyst was computed.  net8.0-macos net8.0-macos was computed.  net8.0-tvos net8.0-tvos was computed.  net8.0-windows net8.0-windows was computed.  net9.0 net9.0 was computed.  net9.0-android net9.0-android was computed.  net9.0-browser net9.0-browser was computed.  net9.0-ios net9.0-ios was computed.  net9.0-maccatalyst net9.0-maccatalyst was computed.  net9.0-macos net9.0-macos was computed.  net9.0-tvos net9.0-tvos was computed.  net9.0-windows net9.0-windows was computed.  net10.0 net10.0 was computed.  net10.0-android net10.0-android was computed.  net10.0-browser net10.0-browser was computed.  net10.0-ios net10.0-ios was computed.  net10.0-maccatalyst net10.0-maccatalyst was computed.  net10.0-macos net10.0-macos was computed.  net10.0-tvos net10.0-tvos was computed.  net10.0-windows 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 (2)

Showing the top 2 NuGet packages that depend on Platform.Data.Doublets:

Package Downloads
Platform.Data.Doublets.Sequences

LinksPlatform's Platform.Data.Doublets.Sequences Class Library

Foundation.Data.Doublets.Cli

Public library exposing the parser, query processors, decorators, named/pinned types, persistent transformation triggers, and LiNo I/O used by the clink CLI.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.18.1 876 1/26/2025
0.17.2 761 3/24/2023
0.17.1 592 2/19/2023
0.17.0 663 1/14/2023
0.16.0 488 1/7/2023
0.15.0 487 12/15/2022
0.13.4 2,744 4/7/2022
0.13.3 705 3/31/2022
0.13.2 742 2/22/2022
0.13.1 1,120 2/20/2022
0.13.0 689 2/2/2022
0.12.0 686 2/2/2022
0.11.1 643 1/30/2022
0.11.0 666 1/30/2022
0.10.1 646 1/30/2022
0.10.0 643 1/25/2022
0.9.0 663 1/25/2022
0.8.0 667 1/19/2022
0.7.0 1,439 8/14/2021
0.6.11 1,016 8/8/2021
Loading failed

Update to use only .NET 8.
README.md is added to NuGet.