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 0 9/17/2026
4.0.1145 37 9/17/2026
4.0.1144 41 9/16/2026
4.0.1143 52 9/16/2026
4.0.1142 62 9/16/2026
4.0.1139 53 9/16/2026
4.0.1138 44 9/16/2026
4.0.1137 61 9/15/2026
4.0.1135 51 9/15/2026
4.0.1134 69 9/14/2026
4.0.1133 89 9/14/2026
4.0.1132 86 9/14/2026
4.0.1131 85 9/13/2026
4.0.1129 93 9/13/2026
4.0.1128 94 9/13/2026
4.0.1127 96 9/13/2026
4.0.1126 94 9/13/2026
4.0.1123 94 9/13/2026
4.0.1114 316 9/10/2026
4.0.1113 83 9/10/2026
Loading failed

Updated Soenneker.Zelos.Container.Util to 4.0.609