Soenneker.Zelos.Abstract 4.0.217

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Soenneker.Zelos.Abstract --version 4.0.217
                    
NuGet\Install-Package Soenneker.Zelos.Abstract -Version 4.0.217
                    
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.217" />
                    
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.217" />
                    
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.217
                    
#r "nuget: Soenneker.Zelos.Abstract, 4.0.217"
                    
#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.217
                    
#: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.217
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Zelos.Abstract&version=4.0.217
                    
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.223 0 9/15/2026
4.0.221 61 9/14/2026
4.0.218 2,848 8/30/2026
4.0.217 108 8/30/2026
4.0.216 92 8/30/2026
4.0.215 133 8/29/2026
4.0.214 97 8/29/2026
4.0.213 1,356 8/18/2026
4.0.212 2,100 7/28/2026
4.0.210 1,237 7/16/2026
4.0.209 146 7/16/2026
4.0.208 108 7/16/2026
4.0.207 1,982 6/19/2026
4.0.206 1,461 6/18/2026
4.0.205 116 6/18/2026
4.0.204 1,721 6/6/2026
4.0.203 131 6/5/2026
4.0.202 118 6/5/2026
4.0.200 294 6/5/2026
4.0.198 2,063 4/22/2026
Loading failed

Update dependency Soenneker.Dtos.IdValuePair to 4.0.143 (#767)