Soenneker.Zelos.Abstract 4.0.218

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

alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image

Soenneker.Zelos.Abstract

Defines the contract for a generic container storing documents in the Zelos database.

Install

dotnet add package Soenneker.Zelos.Abstract

Quick start

using Soenneker.Zelos.Abstract;

IZelosContainer zelosContainer = /* resolve from DI */;
var result = zelosContainer.BuildQueryable();

Builds queryable.

What you get

  • IZelosContainer — Defines the contract for a generic container storing documents in the Zelos database.
  • IZelosDatabase — A lightweight, thread-safe asynchronous JSON-based document database.

API at a glance

API What it does Result / important behavior
IZelosContainer.AddItem(id, document, cancellationToken) Adds a document to the container. The added document.
IZelosContainer.GetItem(id) Retrieves a document by its ID. The document if found, otherwise null.
IZelosContainer.GetItemStrict(id) Retrieves a document by its ID, throwing an exception if not found. The found document.
IZelosContainer.UpdateItem(id, document, cancellationToken) Updates an existing document in the container. A task whose result is the text returned by update Item.
IZelosContainer.DeleteItem(id, cancellationToken) Deletes a document from the container. Completes when the requested deletion has finished.
IZelosContainer.GetAllItems() Retrieves all items in the container. A list of all stored documents.
IZelosDatabase.MarkDirty(containerName, cancellationToken) Marks a container as dirty, indicating it needs to be saved. Typically, is not needed to be called manually, but available. A ValueTask representing the asynchronous operation.
IZelosDatabase.GetContainer(containerName, cancellationToken) Retrieves container. A ValueTask containing the requested ZelosContainer.
IZelosDatabase.Save(cancellationToken) Saves any dirty containers to persistent storage if needed. Typically, is not needed to be called manually, but available. A Task representing the asynchronous operation.
IZelosDatabase.UnloadContainer(containerName, cancellationToken) Unloads the named container from the database. true if the container was unloaded; otherwise, false.

Practical notes

  • Cancellation stops pending work; it does not undo work that has already completed.
  • Dispose instances you own when their scope ends so held resources can be released.
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.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Soenneker.Zelos.Abstract:

Package Downloads
Soenneker.Zelos.Container

Containers for the lightweight, file-based, thread-safe asynchronous JSON document database

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
4.0.218 456 8/30/2026
4.0.217 62 8/30/2026
4.0.216 41 8/30/2026
4.0.215 69 8/29/2026
4.0.214 48 8/29/2026
4.0.213 1,276 8/18/2026
4.0.212 2,092 7/28/2026
4.0.210 1,228 7/16/2026
4.0.209 139 7/16/2026
4.0.208 104 7/16/2026
4.0.207 1,973 6/19/2026
4.0.206 1,446 6/18/2026
4.0.205 110 6/18/2026
4.0.204 1,717 6/6/2026
4.0.203 122 6/5/2026
4.0.202 114 6/5/2026
4.0.200 292 6/5/2026
4.0.198 2,059 4/22/2026
4.0.197 865 4/7/2026
4.0.196 1,515 3/13/2026
Loading failed

Update dependency Soenneker.Dtos.IdValuePair to 4.0.144 (#769)