KamiSama.Chassis.Commons 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 --version 10.0.11.2
                    
NuGet\Install-Package KamiSama.Chassis.Commons -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" 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" Version="10.0.11.2" />
                    
Directory.Packages.props
<PackageReference Include="KamiSama.Chassis.Commons" />
                    
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 --version 10.0.11.2
                    
#r "nuget: KamiSama.Chassis.Commons, 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@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&version=10.0.11.2
                    
Install as a Cake Addin
#tool nuget:?package=KamiSama.Chassis.Commons&version=10.0.11.2
                    
Install as a Cake Tool

KamiSama.Chassis.Commons

Back to package index

Version: 10.0.0

Description

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.

How to use

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

Derive a focused feature from a generic workflow, implement its validation or mapping hooks, and register the concrete feature and repository with your application:

using KamiSama.Chassis.Commons.Features;

public sealed class FindProduct(IProductRepository repository)
    : GenericFindByIdFeature<Product, ProductDto, IProductRepository, Guid>(repository)
{
    protected override Task<ProductDto> ConvertToDto(Product entity, CancellationToken cancellationToken)
        => Task.FromResult(new ProductDto(entity.Id, entity.Name));
}

Create and update hooks run around repository mutation; find and delete workflows throw HTTP not-found exceptions for missing entities; exists workflows delegate directly. GenericRepository is EF Core based, applies the same search hook to list and count queries, and relies on the injected DbContext lifetime and save behavior inherited from DbRepository. The delete guard returns without deleting when it yields false and does not report why.

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

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

Package Downloads
Polareum.Identity.Core

Package Description

Polareum.Otp.Core

Package Description

Polareum.Contents.Core

Package Description

Polareum.Ticketing.Core

Package Description

Polareum.Localization.Core

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
10.0.11.9 154 8/24/2026
10.0.11.8 293 8/21/2026
10.0.11.7 265 8/21/2026
10.0.11.6 334 8/19/2026
10.0.11.5 300 8/18/2026
10.0.11.4 306 8/18/2026
10.0.11.3 288 8/18/2026
10.0.11.2 276 8/18/2026
10.0.11.1 225 8/15/2026
10.0.11 176 8/11/2026
10.0.10.2 186 8/4/2026
10.0.10.1 110 7/31/2026
10.0.10 240 7/30/2026
10.0.9 187 6/20/2026
10.0.7 729 5/1/2026
10.0.6 255 4/16/2026
10.0.1 350 11/26/2025
10.0.0 256 11/22/2025
3.1.6 243 11/7/2025
3.1.5 240 11/6/2025
Loading failed