![]() |
VOOZH | about |
dotnet add package Platform.Data.Doublets --version 0.18.1
NuGet\Install-Package Platform.Data.Doublets -Version 0.18.1
<PackageReference Include="Platform.Data.Doublets" Version="0.18.1" />
<PackageVersion Include="Platform.Data.Doublets" Version="0.18.1" />Directory.Packages.props
<PackageReference Include="Platform.Data.Doublets" />Project file
paket add Platform.Data.Doublets --version 0.18.1
#r "nuget: Platform.Data.Doublets, 0.18.1"
#:package Platform.Data.Doublets@0.18.1
#addin nuget:?package=Platform.Data.Doublets&version=0.18.1Install as a Cake Addin
#tool nuget:?package=Platform.Data.Doublets&version=0.18.1Install as a Cake Tool
👁 NuGet Version and Downloads count
👁 Actions Status
👁 Codacy Badge
👁 CodeFactor
LinksPlatform's Platform.Data.Doublets Class Library.
Namespace: Platform.Data.Doublets
Forked from: Konard/LinksPlatform/Platform/Platform.Data.Doublets
NuGet package: Platform.Data.Doublets
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);
👁 Result of performance comparison between SQLite and Doublets
PDF file with code for e-readers.
👁 C# dependency graph SVG image
👁 C++ dependency graph SVG image
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. |
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. |
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 |
Update to use only .NET 8.
README.md is added to NuGet.