Sekiban.Core 0.18.4

dotnet add package Sekiban.Core --version 0.18.4
NuGet\Install-Package Sekiban.Core -Version 0.18.4
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="Sekiban.Core" Version="0.18.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Sekiban.Core --version 0.18.4
#r "nuget: Sekiban.Core, 0.18.4"
#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.
// Install Sekiban.Core as a Cake Addin
#addin nuget:?package=Sekiban.Core&version=0.18.4

// Install Sekiban.Core as a Cake Tool
#tool nuget:?package=Sekiban.Core&version=0.18.4

Sekiban - Event Sourcing and CQRS Framework using C#

Sekiban - Event Sourcing and CQRS Framework using C#. It can store data into Azure Cosmos DB or AWS Dynamo DB

sekiban logo

What is Sekiban?

Sekiban is an application development framework that leverages Event Sourcing and CQRS principles. Built with C# and .NET Core 7+, it allows developers to use a declarative API to create event sourcing applications. Sekiban supports various event stores such as Microsoft Azure Cosmos DB and Amazon Dynamo DB, facilitating deployment on either Azure or AWS.

Getting started

Do you want to start coding? If so, please see Quick Start

日本語の情報をお探しでしょうか? Sekiban - イベントソーシングとCQRSフレームワークの紹介 のページから幾らかの記事が日本語で書かれています。開発者は日本語も分かりますので日本語の情報も増やしていきたいと思っています。

Sponsors

Sekiban is an Apache 2.0 open source project with its ongoing development. We will launch soon for the sponsorship information. If you are interested in the special sponsorship, please contact us. Also, you can sponsor us from Github Sponsors

Special Sponsor

JTS

Understanding Event Sourcing and CQRS

If you've landed here, you're likely already familiar with Event Sourcing and CQRS. However, if you require more detailed insights, Greg Young's informative YouTube talk might be of assistance. Check out the transcript of Greg's presentation at the Code on the Beach 2014 event on CQRS and Event Sourcing. Greg suggests creating your event sourcing system instead of relying on frameworks, a viewpoint I share, as constructing your framework can deepen your understanding of event sourcing concepts.

However, we recognize many developers prefer concentrating on business logic and swiftly proceeding with tools and document databases. Given the recent advances in database speed and scalability across the cloud, event sourcing can be quite efficient with the use of frameworks and cloud solutions. Fortunately, as Sekiban is open-source, developers wishing to delve deeper can experiment with the source code housed in the repository.

Disclaimer: Despite using a framework, it's essential for developers to be familiar with event sourcing concepts, especially when optimizing Query performance for a growing user base and data set post-launch. Adequate knowledge of Event Sourcing and CQRS is mandatory when converting it to a microservice or improving performances.

Key Features of Sekiban

Enhance your application development experience with Sekiban suited for those who prioritize efficiency and effectiveness:

  • Simple Commands and Events: Facilitates straightforward creation of functionality within your application.
  • Publish-only Commands and Events: Provides way to save events without projecting aggregates.
  • Optimistic Aggregate Version Check: Enables efficient conflict detection in concurrent environments.
  • Event Versions: Allows for improved forward compatibility.
  • Single/Multi Aggregate Projections: Supports projections at both individual and multiple aggregate levels.
  • Projections Snapshots: Offers the ability to capture the state of a projection at a certain point in time.
  • Large Snapshots Storage: Accommodate sizable snapshots using Azure Blob Storage or Amazon S3.
  • Built-in Testing Framework: Simplifies testing with an integrated suite.
  • Azure Cosmos DB / Dynamo DB Datastore: Provides scalable and globally distributed data storage solutions.
  • Tenant Partitions: Facilitates separation of data based on tenant for easier data management and handling.
  • Query from Multiple Projections: Enables querying from a range of projections for more dynamic data analysis.
  • Command and Query Web API Generator with Swagger Support: Streamlines API design, building, and documentation.

These, coupled with many more features, allow developers to focus on business aspects, implementing commands, events, projections, tests, and queries for practical solutions without unnecessary complexity.

Compatibility

Sekiban is compatible with .NET 7 and 8.

For Azure Cosmos DB, Sekiban supports the Hierarchical Partition Key feature. This enables more efficient querying using Azure Cosmos DB by creating a Tenant (or Root Partition Key), Aggregate Type, and Partition Key.

When using Dynamo DB with Sekiban, you need to set up a Partition Key and Sort Key.

Scale of Sekiban Projects

As of Sekiban version 0.15.x, the framework doesn't have built-in materialized view helper features. Sekiban's Live Projection capability is well-suited for small to medium-sized systems. Typically, Sekiban can handle Live Projections provided the system memory can accommodate the size of the Multiple Projections.

For more insights on Live Projections, please reference this informative article by Anton Stöckl: Live Projections for Read Models with Event Sourcing and CQRS.

Developers can implement materialized views using Azure Cosmos DB's and Dynamo DB's change feed feature. Although creation of materialized views with Change Feed is a straightforward process, it does not directly pertain to the Sekiban Framework's core functions, hence it hasn't been included within the framework.

Open Source

Sekiban is released as open source under the Apache 2.0 license. You can view our License here. We welcome developers to fork the project, fix bugs, or add new features as they wish. For those interested in contributing, we offer a detailed Contribution Guideline and Code of Conduct. J-Tech Japan owns this project and determines its future direction.

Documentation

We are planning to deploy documentation on Sekiban.dev, we have not done yet. eventually please see

https://github.com/J-Tech-Japan/Sekiban/blob/main/docs/docfx_project/articles/intro.md

Support and Training

J-Tech Japan welcomes sponsors for this project to help maintain a high-quality framework. If you require training or seminars, please contact us at sekibanadmin@jtechs.com.

Contribution Guideline

Code of Conduct

About Us

J-Tech Japan (株式会社ジェイテックジャパン) has been developing sekiban since 2022. We are located in Tokyo, Japan and we have been developing enterprise web application since 2008. J-Tech Japan

License

Apache 2.0 See License

Copyright (c) 2022- J-Tech Japan

Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (7)

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

Package Downloads
Sekiban.Testing

Sekiban - Event Sourcing Framework Testing

Sekiban.Infrastructure.Cosmos

Sekiban - Event Sourcing Framework CosmosInfrastructure

Sekiban.Web

Sekiban - Event Sourcing Framework WebHelper

Sekiban.Infrastructure.Dynamo

Sekiban - Event Sourcing Framework Dynamo Infrastructure

Sekiban.Infrastructure.Azure.Storage.Blobs

Sekiban - Event Sourcing Framework Azure Storage Blob

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.18.4 140 4/11/2024
0.18.3 154 3/30/2024
0.18.2 261 3/26/2024
0.18.1 142 3/7/2024
0.18.0 254 3/5/2024
0.17.10 154 3/3/2024
0.17.9 138 2/29/2024
0.17.8 139 2/29/2024
0.17.7 125 2/27/2024
0.17.6 114 2/27/2024
0.17.5 124 2/16/2024
0.17.4 156 2/15/2024
0.17.3 154 2/13/2024
0.17.2 160 1/21/2024
0.17.1 158 1/18/2024
0.17.0 119 1/17/2024
0.16.3 260 1/10/2024
0.16.2 200 1/5/2024
0.16.1 158 12/30/2023
0.16.0 131 12/30/2023
0.15.5 219 12/26/2023
0.15.4 135 12/26/2023
0.15.3 309 11/18/2023
0.15.2 307 11/3/2023
0.15.1 188 10/27/2023
0.15.0 304 10/27/2023
0.14.8 152 10/24/2023
0.14.6 386 9/30/2023
0.14.5 267 9/26/2023
0.14.4 165 9/26/2023
0.14.3 163 9/20/2023
0.14.2 191 9/8/2023
0.14.1 352 8/24/2023
0.14.0 210 8/24/2023
0.13.6 306 7/29/2023
0.13.5 223 7/29/2023
0.13.4 205 7/28/2023
0.13.3 254 7/21/2023
0.13.2 231 7/21/2023
0.13.1 226 7/18/2023
0.13.0 236 7/14/2023
0.12.6 235 7/13/2023
0.12.5 254 7/13/2023
0.12.4 242 7/8/2023
0.12.3 246 7/8/2023
0.12.2 250 7/8/2023
0.12.1 245 6/27/2023
0.12.0 248 6/22/2023
0.11.4 252 6/6/2023
0.11.3 229 6/5/2023
0.11.2 345 5/25/2023
0.11.1 266 5/25/2023
0.11.0 147 5/25/2023