Soenneker.Zelos.Repository 4.0.1058

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Soenneker.Zelos.Repository --version 4.0.1058
                    
NuGet\Install-Package Soenneker.Zelos.Repository -Version 4.0.1058
                    
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.1058" />
                    
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.1058" />
                    
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.1058
                    
#r "nuget: Soenneker.Zelos.Repository, 4.0.1058"
                    
#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.1058
                    
#: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.1058
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Zelos.Repository&version=4.0.1058
                    
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.1066 0 8/30/2026
4.0.1064 0 8/30/2026
4.0.1063 0 8/30/2026
4.0.1060 2 8/30/2026
4.0.1058 32 8/30/2026
4.0.1056 39 8/30/2026
4.0.1053 28 8/29/2026
4.0.1051 42 8/29/2026
4.0.1050 35 8/29/2026
4.0.1048 38 8/29/2026
4.0.1046 82 8/27/2026
4.0.1045 83 8/26/2026
4.0.1044 88 8/26/2026
4.0.1043 83 8/26/2026
4.0.1041 86 8/25/2026
4.0.1040 106 8/22/2026
4.0.1039 98 8/22/2026
4.0.1038 110 8/22/2026
4.0.1037 80 8/21/2026
4.0.1036 108 8/20/2026
Loading failed

Update dependency Soenneker.Utils.Method to 4.0.458 (#1576)