Sencilla.Core 10.0.37

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

Sencilla.Core

Foundation package for the Sencilla Framework — a modular .NET 10 application framework.

What's Included

  • Entity interfacesIEntity<TKey>, lifecycle markers (IEntityCreateable, IEntityUpdateable, IEntityDeleteable, etc.)
  • Repository patternIReadRepository, ICreateRepository, IUpdateRepository, IDeleteRepository, and more
  • CQRS — commands, queries, events, and dispatchers with middleware support
  • Auto-discovery DI — attribute-based service registration ([Implement], [Singleton])
  • Filtering & pagination — built-in filter, sort, and page abstractions
  • Exception hierarchy — structured exceptions for validation, not-found, and authorization errors

Installation

dotnet add package Sencilla.Core

Quick Start

using Sencilla.Core;

// Define an entity
public class Product : IEntity<int>, IEntityCreateable, IEntityUpdateable
{
    public int Id { get; set; }
    public string Name { get; set; } = string.Empty;
    public decimal Price { get; set; }
    public DateTime CreatedDate { get; set; }
    public DateTime UpdatedDate { get; set; }
}

// Register services
builder.Services.AddSencilla(builder.Configuration);

Documentation

License

MIT

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.
  • net10.0

    • No dependencies.

NuGet packages (15)

Showing the top 5 NuGet packages that depend on Sencilla.Core:

Package Downloads
Sencilla.Web

Package Description

Sencilla.Component.Config

Package Description

Sencilla.Component.Files

Package Description

Sencilla.Messaging

Package Description

Sencilla.Component.Users

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
10.0.37 40 6/6/2026
10.0.36 46 6/6/2026
10.0.35 91 6/5/2026
10.0.34 85 6/5/2026
10.0.32 134 6/4/2026
10.0.31 134 6/4/2026
10.0.30 140 6/4/2026
10.0.29 153 6/4/2026
10.0.28 173 6/3/2026
10.0.27 173 6/3/2026
10.0.26 241 6/2/2026
10.0.19 340 6/1/2026
10.0.18 337 6/1/2026
10.0.17 394 5/13/2026
10.0.16 337 5/12/2026
10.0.15 341 5/12/2026
10.0.14 307 5/1/2026
10.0.13 323 3/29/2026
10.0.12 386 3/2/2026
10.0.11 288 2/27/2026
Loading failed