Soenneker.Cosmos.Repositories.General 4.0.673

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Soenneker.Cosmos.Repositories.General --version 4.0.673
                    
NuGet\Install-Package Soenneker.Cosmos.Repositories.General -Version 4.0.673
                    
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.Cosmos.Repositories.General" Version="4.0.673" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Cosmos.Repositories.General" Version="4.0.673" />
                    
Directory.Packages.props
<PackageReference Include="Soenneker.Cosmos.Repositories.General" />
                    
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.Cosmos.Repositories.General --version 4.0.673
                    
#r "nuget: Soenneker.Cosmos.Repositories.General, 4.0.673"
                    
#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.Cosmos.Repositories.General@4.0.673
                    
#: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.Cosmos.Repositories.General&version=4.0.673
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Cosmos.Repositories.General&version=4.0.673
                    
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.Cosmos.Repositories.General

An abstract Cosmos repository base for multiple typed-document models stored in the shared general container.

Installation

dotnet add package Soenneker.Cosmos.Repositories.General

Define a repository

The package does not register a concrete service. Derive from GeneralRepository<TDocument>, where the document extends TypedDocument, and provide the discriminator stored in its EntityType property.

public interface IWidgetRepository : IGeneralRepository<WidgetDocument>
{
}

public sealed class WidgetRepository : GeneralRepository<WidgetDocument>, IWidgetRepository
{
    protected override string EntityType => "widget";

    public WidgetRepository(
        ICosmosContainerUtil containerUtil,
        IConfiguration configuration,
        ILogger<GeneralRepository<WidgetDocument>> logger,
        IUserContext userContext,
        IBackgroundQueue backgroundQueue,
        IMemoryStreamUtil memoryStreamUtil)
        : base(containerUtil, configuration, logger, userContext, backgroundQueue, memoryStreamUtil)
    {
    }
}

Register your implementation as scoped because the repository consumes scoped user context:

services.AddScoped<IWidgetRepository, WidgetRepository>();

The Cosmos container, user context, background queue, memory-stream utility, configuration, and logging dependencies must also be registered. This package deliberately does not choose their lifetimes for the application.

Behavior

All derived repositories use the general container. GetAll, GetAllIds, DeleteAll, DeleteAllPaged, and DeleteAllPagedParallel limit their work to documents whose EntityType equals the derived repository's discriminator. The rest of the inherited ICosmosRepository<TDocument> API provides point reads, queries, writes, conditional ETag operations, paging, and audit support.

Documents must use the partition-key shape expected by Soenneker.Cosmos.Repository and the configured container. Choose stable, unique EntityType values; two repository types using the same value operate on the same documents.

Delete-all operations are permanent and are not transactional across the full result set. Failures and cancellation propagate after any already completed deletes.

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

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
4.0.682 0 9/2/2026
4.0.681 36 9/1/2026
4.0.680 40 9/1/2026
4.0.679 37 9/1/2026
4.0.678 32 9/1/2026
4.0.677 33 9/1/2026
4.0.676 42 8/31/2026
4.0.675 52 8/31/2026
4.0.674 48 8/31/2026
4.0.673 60 8/31/2026
4.0.672 59 8/30/2026
4.0.671 50 8/30/2026
4.0.670 48 8/30/2026
4.0.669 48 8/29/2026
4.0.668 49 8/29/2026
4.0.667 81 8/27/2026
4.0.666 96 8/26/2026
4.0.665 79 8/26/2026
4.0.664 83 8/26/2026
4.0.663 98 8/22/2026
Loading failed

Update dependency Soenneker.Cosmos.Repositories.Shared to 4.0.396 (#1200)