Soenneker.Cosmos.Repositories.Shared 4.0.394

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

An abstract Cosmos repository base for isolating one typed-document model inside a container shared by several models.

Installation

dotnet add package Soenneker.Cosmos.Repositories.Shared

Define a repository

Derive from SharedRepository<TDocument>, where the document extends TypedDocument. Each derived repository must choose both its container and the EntityType discriminator stored on its documents.

public interface IProductRepository : ISharedRepository<ProductDocument>
{
}

public sealed class ProductRepository : SharedRepository<ProductDocument>, IProductRepository
{
    public override string ContainerName => "catalog";
    protected override string EntityType => "product";

    public ProductRepository(
        ICosmosContainerUtil containerUtil,
        IConfiguration configuration,
        ILogger<SharedRepository<ProductDocument>> logger,
        IUserContext userContext,
        IBackgroundQueue backgroundQueue,
        IMemoryStreamUtil memoryStreamUtil)
        : base(containerUtil, configuration, logger, userContext, backgroundQueue, memoryStreamUtil)
    {
    }
}

Register the concrete repository as scoped because it consumes scoped user context:

services.AddScoped<IProductRepository, ProductRepository>();

This package has no registrar. Register the Cosmos container, user context, background queue, memory-stream utility, configuration, and logging dependencies required by the base constructor.

Discriminator-scoped operations

The following operations automatically add an EntityType filter:

  • GetAll and GetAllIds
  • Any, None, and Count
  • DeleteAll, DeleteAllPaged, and DeleteAllPagedParallel

Other inherited methods follow the ICosmosRepository<TDocument> contract and use the IDs, partition keys, or queries supplied by the caller. They do not automatically prevent access to another discriminator. Use unique, stable discriminator values and avoid exposing an unrestricted repository to untrusted callers.

DeleteAll first loads all matching IDs. DeleteAllPaged processes ordered pages sequentially and can queue deletes. DeleteAllPagedParallel performs direct deletes with bounded concurrency and requires maxConcurrency of at least 1.

Bulk deletion is permanent and not transactional across the result set. A failure or cancellation propagates after already completed or queued work; it does not roll that work back.

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.Cosmos.Repositories.Shared:

Package Downloads
Soenneker.Cosmos.Repositories.General

A data persistence abstraction layer for Cosmos DB General type documents

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
4.0.396 0 8/30/2026
4.0.395 0 8/30/2026
4.0.394 33 8/30/2026
4.0.393 34 8/29/2026
4.0.392 35 8/29/2026
4.0.391 78 8/27/2026
4.0.390 67 8/26/2026
4.0.389 55 8/26/2026
4.0.388 51 8/26/2026
4.0.387 43 8/26/2026
4.0.385 114 8/22/2026
4.0.384 106 8/22/2026
4.0.383 104 8/22/2026
4.0.382 90 8/22/2026
4.0.381 163 8/21/2026
4.0.380 104 8/21/2026
4.0.379 197 8/20/2026
4.0.378 106 8/19/2026
4.0.377 114 8/18/2026
4.0.376 108 8/18/2026
Loading failed

Isolate shared repository operations by type