KamiSama.Chassis.Commons.Abstractions 10.0.11.2

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

KamiSama.Chassis.Commons.Abstractions

Back to package index

Version: 10.0.0

Description

Feature and repository contracts for the KamiSama chassis layer. Reference this package from application or module projects that need to depend on abstractions instead of concrete implementations.

How to use

dotnet add package KamiSama.Chassis.Commons.Abstractions --version 10.0.0

Reference this package from contracts, callers, and implementations that need shared CRUD feature or repository shapes without taking a dependency on the concrete chassis workflows:

using KamiSama.Chassis.Commons.Features;

public sealed class ProductController(IFindByIdFeature<ProductDto, Guid> findProduct)
{
    public Task<ProductDto> Get(Guid id, CancellationToken cancellationToken)
        => findProduct.FindByIdAsync(id, cancellationToken);
}

This package contains contracts only: it does not register services, implement persistence, define transaction boundaries, or decide missing-entity behavior. The shorter IListFeature<TEntityDto, TSearchModel>, IListingRepository<TEntity, TSearchModel>, and IGenericRepository<TEntity, TSearchModel> interfaces are aliases for the standard PagedResult<T> shapes.

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

Showing the top 5 NuGet packages that depend on KamiSama.Chassis.Commons.Abstractions:

Package Downloads
KamiSama.Chassis.Commons

Reusable feature and repository base classes for common CRUD-style application flows. Use this package when building service-layer features around entities, DTOs, repositories, and paged results.

Polareum.Identity.Abstractions

Package Description

Polareum.Contents.Abstractions

Package Description

Polareum.Ticketing.Abstractions

Package Description

Polareum.Localization.Abstractions

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
10.0.11.9 388 8/24/2026
10.0.11.8 510 8/21/2026
10.0.11.7 455 8/21/2026
10.0.11.6 463 8/19/2026
10.0.11.5 415 8/18/2026
10.0.11.4 419 8/18/2026
10.0.11.3 405 8/18/2026
10.0.11.2 379 8/18/2026
10.0.11.1 295 8/15/2026
10.0.11 220 8/11/2026
10.0.10.2 236 8/4/2026
10.0.10.1 119 7/31/2026
10.0.10 385 7/30/2026
10.0.9 261 6/20/2026
10.0.7 1,315 5/1/2026
10.0.6 376 4/16/2026
10.0.1 448 11/26/2025
10.0.0 267 11/22/2025
3.1.6 257 11/7/2025
3.1.5 243 11/6/2025
Loading failed