Soenneker.Zelos.Repository
4.0.1060
Prefix Reserved
dotnet add package Soenneker.Zelos.Repository --version 4.0.1060
NuGet\Install-Package Soenneker.Zelos.Repository -Version 4.0.1060
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.1060" />
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.1060" />
<PackageReference Include="Soenneker.Zelos.Repository" />
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.1060
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Soenneker.Zelos.Repository, 4.0.1060"
#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.1060
#: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.1060
#tool nuget:?package=Soenneker.Zelos.Repository&version=4.0.1060
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
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 | Versions 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.
-
net10.0
- Soenneker.Documents.Document (>= 4.0.2696)
- Soenneker.Dtos.IdNamePair (>= 4.0.724)
- Soenneker.Extensions.Configuration (>= 4.0.864)
- Soenneker.Utils.Method (>= 4.0.459)
- Soenneker.Zelos.Container.Util (>= 4.0.572)
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.1060 | 0 | 8/30/2026 |
| 4.0.1058 | 0 | 8/30/2026 |
| 4.0.1056 | 0 | 8/30/2026 |
| 4.0.1053 | 0 | 8/29/2026 |
| 4.0.1051 | 7 | 8/29/2026 |
| 4.0.1050 | 24 | 8/29/2026 |
| 4.0.1048 | 32 | 8/29/2026 |
| 4.0.1046 | 78 | 8/27/2026 |
| 4.0.1045 | 83 | 8/26/2026 |
| 4.0.1044 | 88 | 8/26/2026 |
| 4.0.1043 | 82 | 8/26/2026 |
| 4.0.1041 | 86 | 8/25/2026 |
| 4.0.1040 | 104 | 8/22/2026 |
| 4.0.1039 | 98 | 8/22/2026 |
| 4.0.1038 | 108 | 8/22/2026 |
| 4.0.1037 | 80 | 8/21/2026 |
| 4.0.1036 | 108 | 8/20/2026 |
| 4.0.1035 | 111 | 8/19/2026 |
| 4.0.1034 | 107 | 8/18/2026 |
| 4.0.1033 | 88 | 8/18/2026 |
Loading failed
Update dependency Soenneker.Zelos.Container.Util to 4.0.572 (#1588)