Marty.Net.Aggregates.Contracts 1.0.2

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

// Install Marty.Net.Aggregates.Contracts as a Cake Tool
#tool nuget:?package=Marty.Net.Aggregates.Contracts&version=1.0.2

N|Solid

Marty.Net

An extremely opinionated framework to work with Greg Young's EventStoreDb.

NuGet Info GitHub license

Build Status

CI

Build history

Table of contents

About

Marty.Net is an opinionated application framework for EventStoreDb.

After having been working with EventStore for some time now, and finding different issues on the code using it, starting from the Aggregate down to connection management, Marty.Net was born as an effort to allow me start new projects quickly on top of EventStore.

The motivation behind it is to allow other developers of different levels to use EventStore with the minimum of effort, making simple to configure the behavior, and allow unit testing of simple things (routing, writing and reading).

Also the framework is split in 2 nuget packages to allow easy unit testing without installing all the EventStore dependencies in domain projects.

Marty.Net is not meant to evolve to a heavy bloated library, but to keep things simple and working. Is focused on microservices architecture where DRY is not much of an issue.

Marty.Net main purpose is to allow you to work with EventStore in a few lines, and that's how it will always be.

Who is it for?

Marty.Net is intended for developers who want to work with event sourcing and a reliable event store, simplifying their code and life.

It is not designed to deal with every case, but the simple ones, the ones you will be doing 99% of the time. It enforces the implementation of some interfaces with the aim of having a consistent development experience, so nobody has to worry about the basics of your event store.

Getting Started

With Contracts implementation

Install-Package Marty.Net.Contracts

Goodies

  • Implement an IPipelineBehavior if you want a pipeline behavior for your handlers.
  • Implement an IPreProcessor if you to execute actions before your handlers.
  • Implement an IPostProcessor if you to execute actions after your handlers.

That's it you can start coding, and unit testing... Now you want to see if against a real EventStore instance?

Integrating with a real instance

Install-Package Marty.Net

  • Add a configuration section called Marty.Net and configure the EventStore with the settings class EventStoreSettings with the only required property ConnectionString
  • Add Marty.Net to your ServiceCollection (in your writer service and in your reader service) via the extension method services.AddMarty.Net(...)
  • Subscribe to a stream or projection on the EventStore with SubscribeToStream(...)
  • Append your events to the EventStore with Append(..)

That's it, the simplest way to start event sourcing

Loading aggregates

Install-Package Marty.Net.Aggreagtes.Contracts

  • Declare a class that inherits from Aggregate
  • Implement privately methods with the signature private void Apply(MyEvent1 @event) or private void Apply(MyEvent2 @event)
  • Implement in your StreamResolver public string StreamForAggregate<T>(System.Guid id) where T : Aggregate
  • Load your aggregate from EventStore var user = await _eventStore.Get<User>(id, cancellationToken);

Now when is time to integrate with a real instance of EventStore, just install the package

Marty.Net.Aggregates

and you are ready to go.

Examples

A Publisher and Subscriber can be found here You will find how to integrate Pipelines, how to publish events, and how to do simple event sourcing loading aggregates from EventStore.

Retries

By default Marty.Net will not retry anything, but there is a mechanism that can be configured or even better replaced with your own retry mechanism. To configure the out of the box retry mechanism, 3 options can be set to retry on subscriptions, reads and write on the settings, the interval en attempts for all: you want something more powerful, like using Polly just implement this interface and that's it.

License

MIT

Product Compatible and additional computed target framework versions.
.NET 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 (1)

Showing the top 1 NuGet packages that depend on Marty.Net.Aggregates.Contracts:

Package Downloads
Marty.Net.Aggregates

An application framework to start with EventStoreDb

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.2 89 4/9/2024
1.0.1 89 4/8/2024
1.0.0 84 4/5/2024