![]() |
VOOZH | about |
dotnet add package Excalibur.EventSourcing --version 3.0.0-alpha.208
NuGet\Install-Package Excalibur.EventSourcing -Version 3.0.0-alpha.208
<PackageReference Include="Excalibur.EventSourcing" Version="3.0.0-alpha.208" />
<PackageVersion Include="Excalibur.EventSourcing" Version="3.0.0-alpha.208" />Directory.Packages.props
<PackageReference Include="Excalibur.EventSourcing" />Project file
paket add Excalibur.EventSourcing --version 3.0.0-alpha.208
#r "nuget: Excalibur.EventSourcing, 3.0.0-alpha.208"
#:package Excalibur.EventSourcing@3.0.0-alpha.208
#addin nuget:?package=Excalibur.EventSourcing&version=3.0.0-alpha.208&prereleaseInstall as a Cake Addin
#tool nuget:?package=Excalibur.EventSourcing&version=3.0.0-alpha.208&prereleaseInstall as a Cake Tool
Event sourcing infrastructure for the Excalibur framework.
dotnet add package Excalibur.EventSourcing
IEventStore - Event stream persistence abstractionIEventSourcedRepository<T, TKey> - Repository pattern for event-sourced aggregatesISnapshotManager and ISnapshotStrategy - Snapshot support for performance optimizationIUpcastingPipeline - Event versioning and migration supportInMemoryEventStore - In-memory implementation for testing// Register event sourcing with a provider (SQL Server example)
services.AddExcalibur(x => x.AddEventSourcing(es =>
{
es.UseSqlServer(opts => opts.ConnectionString = connectionString);
es.AddRepository<OrderAggregate, Guid>(id => new OrderAggregate(id));
}));
// Or use in-memory for testing
services.AddExcalibur(x => x.AddEventSourcing(es => es.UseInMemory()));
// Use with aggregates
public class OrderAggregate : AggregateRoot<Guid>
{
public void PlaceOrder(OrderDetails details)
{
Apply(new OrderPlacedEvent(Id, details));
}
}
Excalibur.EventSourcing.SqlServer - SQL Server event store implementationExcalibur.Domain - Domain building blocks (AggregateRoot, entities)Excalibur.Dispatch.Abstractions - Domain event interfacesThis project is multi-licensed under:
See for details.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 net10.0 is compatible. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
Showing the top 5 NuGet packages that depend on Excalibur.EventSourcing:
| Package | Downloads |
|---|---|
|
Excalibur.A3
Authorization, Authentication, and Audit (A3) services for the Excalibur framework. |
|
|
Excalibur.Data.MongoDB
MongoDB database provider implementation for Excalibur data access layer. |
|
|
Excalibur.Data.DynamoDb
AWS DynamoDB data provider implementation for Excalibur cloud-native data access. |
|
|
Excalibur.Data.Firestore
Google Cloud Firestore data provider implementation for Excalibur cloud-native data access. |
|
|
Excalibur.Data.CosmosDb
Azure Cosmos DB data provider implementation for Excalibur cloud-native data access. |
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 3.0.0-alpha.208 | 284 | 6/11/2026 |
| 3.0.0-alpha.207 | 285 | 6/11/2026 |
| 3.0.0-alpha.205 | 313 | 6/10/2026 |
| 3.0.0-alpha.204 | 311 | 6/8/2026 |
| 3.0.0-alpha.203 | 289 | 6/8/2026 |
| 3.0.0-alpha.202 | 287 | 6/8/2026 |
| 3.0.0-alpha.201 | 294 | 6/8/2026 |
| 3.0.0-alpha.199 | 283 | 6/8/2026 |
| 3.0.0-alpha.198 | 265 | 5/28/2026 |
| 3.0.0-alpha.197 | 289 | 5/28/2026 |
| 3.0.0-alpha.194 | 302 | 5/20/2026 |
| 3.0.0-alpha.193 | 277 | 5/13/2026 |
| 3.0.0-alpha.192 | 280 | 5/13/2026 |
| 3.0.0-alpha.191 | 285 | 5/13/2026 |
| 3.0.0-alpha.189 | 288 | 5/12/2026 |
| 3.0.0-alpha.187 | 313 | 5/8/2026 |
| 3.0.0-alpha.185 | 321 | 5/7/2026 |
| 3.0.0-alpha.183 | 319 | 5/7/2026 |
| 3.0.0-alpha.182 | 322 | 5/6/2026 |
| 3.0.0-alpha.181 | 340 | 5/6/2026 |