KamiSama.Repositories.Core 10.0.11.9

dotnet add package KamiSama.Repositories.Core --version 10.0.11.9
                    
NuGet\Install-Package KamiSama.Repositories.Core -Version 10.0.11.9
                    
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="KamiSama.Repositories.Core" Version="10.0.11.9" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="KamiSama.Repositories.Core" Version="10.0.11.9" />
                    
Directory.Packages.props
<PackageReference Include="KamiSama.Repositories.Core" />
                    
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 KamiSama.Repositories.Core --version 10.0.11.9
                    
#r "nuget: KamiSama.Repositories.Core, 10.0.11.9"
                    
#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 KamiSama.Repositories.Core@10.0.11.9
                    
#: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=KamiSama.Repositories.Core&version=10.0.11.9
                    
Install as a Cake Addin
#tool nuget:?package=KamiSama.Repositories.Core&version=10.0.11.9
                    
Install as a Cake Tool

KamiSama.Repositories.Core

Back to package index

Version: 10.0.0

Description

Repository contracts, an in-memory implementation, connection-string options, and database initialization abstractions. Use it to keep callers independent of persistence or to hold transient entities in tests and lightweight processes.

How to use

dotnet add package KamiSama.Repositories.Core --version 10.0.0

Use the contracts to keep callers independent of persistence, or use InMemoryRepository<TEntity> for transient data and tests. Its update methods are no-ops, duplicate handling follows HashSet<TEntity> equality, and live queries must not be enumerated concurrently with mutations:

using KamiSama.Repositories;

using var repository = new InMemoryRepository<User>(users, UserIdComparer.Instance);
User? admin = repository.FirstOrDefault(user => user.IsAdmin);
List<User> allUsers = repository.GetAll().ToList();

The repository interfaces do not define durability, transactions, duplicate behavior, cancellation guarantees, or whether returned queries are snapshots. IAsyncQueryableRepository<TEntity>.Where is synchronous despite the interface name. ConnectionStringOption and DataInitializationOptions are configuration data only; an initializer or provider implementation decides how their values are applied.

Namespaces

Types

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 (4)

Showing the top 4 NuGet packages that depend on KamiSama.Repositories.Core:

Package Downloads
KamiSama.Repositories.EntityFrameworkCore

Entity Framework Core repositories, paging, database initialization, and multi-provider DbContext registration.

KamiSama.Repositories.EntityFramework

Entity Framework 6 repositories with immediate persistence and ordered-query paging.

KamiSama.Repositories.Json

Lazy-loading JSON file repository with synchronous and asynchronous query and mutation APIs.

KamiSama.Repositories.Xml

Read-oriented XML directory repository implementations with known serializer and mutation limitations.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
10.0.11.9 391 8/24/2026
10.0.11.8 465 8/22/2026
10.0.11.7 471 8/21/2026
10.0.11.6 440 8/19/2026
10.0.11.5 399 8/18/2026
10.0.11.4 396 8/18/2026
10.0.11.3 376 8/18/2026
10.0.11.2 358 8/18/2026
10.0.11.1 283 8/15/2026
10.0.11 232 8/11/2026
10.0.10.2 260 8/4/2026
10.0.10.1 160 7/31/2026
10.0.10 321 7/30/2026
10.0.9 250 6/20/2026
10.0.7 880 5/1/2026
10.0.6 376 4/16/2026
10.0.1 464 11/26/2025
10.0.0 307 11/22/2025
3.1.6 332 11/7/2025
3.1.5 320 11/6/2025
Loading failed