Soenneker.Zelos.Repository 4.0.1146

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

A data persistence abstraction layer for Zelos DB.

Install

dotnet add package Soenneker.Zelos.Repository

Quick start

using Soenneker.Zelos.Repository.Abstract;

IZelosRepository<TDocument> zelosRepository = /* resolve from DI */;
var result = await zelosRepository.BuildQueryable(default);

Builds a queryable collection of a specified type.

What you get

  • IZelosRepository<TDocument> — A data persistence abstraction layer for Zelos DB.

API at a glance

API What it does Result / important behavior
IZelosRepository<TDocument>.BuildQueryable(cancellationToken) Builds a queryable collection of a specified type. A queryable collection of type T.
IZelosRepository<TDocument>.GetItem(id, cancellationToken) Retrieves an item by its ID. The requested document or null if not found.
IZelosRepository<TDocument>.GetItemByIdNamePair(idNamePair, cancellationToken) Retrieves an item using an IdNamePair. The requested document or null if not found.
IZelosRepository<TDocument>.AddItem(document, cancellationToken) Adds a new document to the repository. The ID of the added document.
IZelosRepository<TDocument>.AddItems(documents, cancellationToken) Adds multiple documents to the repository. The list of added documents.
IZelosRepository<TDocument>.UpdateItem(document, cancellationToken) Updates an existing document in the repository. The ID of the updated document.
IZelosRepository<TDocument>.UpdateItems(documents, cancellationToken) Updates multiple documents in the repository. The list of updated documents.
IZelosRepository<TDocument>.DeleteItem(id, cancellationToken) Deletes a document from the repository by its ID. Completes when the requested deletion has finished.
IZelosRepository<TDocument>.DeleteAll(cancellationToken) Deletes all documents from the repository. Completes when the requested deletion has finished.

Practical notes

  • Cancellation stops pending work; it does not undo work that has already completed.
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.Repository:

Package Downloads
Soenneker.Zelos.Suite

A singular package for Zelos, the file-based json document database engine

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
4.0.1146 112 9/17/2026
4.0.1145 106 9/17/2026
4.0.1144 100 9/16/2026
4.0.1143 96 9/16/2026
4.0.1142 106 9/16/2026
4.0.1139 98 9/16/2026
4.0.1138 81 9/16/2026
4.0.1137 104 9/15/2026
4.0.1135 85 9/15/2026
4.0.1134 111 9/14/2026
4.0.1133 100 9/14/2026
4.0.1132 98 9/14/2026
4.0.1131 98 9/13/2026
4.0.1129 108 9/13/2026
4.0.1128 106 9/13/2026
4.0.1127 111 9/13/2026
4.0.1126 107 9/13/2026
4.0.1123 104 9/13/2026
4.0.1114 324 9/10/2026
4.0.1113 85 9/10/2026
Loading failed

Updated Soenneker.Zelos.Container.Util to 4.0.609