Info
Version: | 1.0.5004-alpha |
Author(s): | Rasmus Mikkelsen |
Last Update: | Thursday, May 23, 2024 |
.NET Fiddle: | Create the first Fiddle |
Project Url: | https://docs.geteventflow.net/ |
NuGet Url: | https://www.nuget.org/packages/EventFlow.Sql |
Install
Install-Package EventFlow.Sql
dotnet add package EventFlow.Sql
paket add EventFlow.Sql
EventFlow.Sql Download (Unzip the "nupkg" after downloading)
Dependencies
.NETStandard 1.6
- EventFlow(>= 0.81.4483)
- Dapper(>= 1.50.2)
- NETStandard.Library(>= 1.6.1)
- System.ComponentModel.Annotations(>= 4.3.0)
- dbup-core(>= 4.1.0)
- EventFlow(>= 0.81.4483)
- Dapper(>= 1.50.2)
- System.ComponentModel.Annotations(>= 4.7.0)
- dbup-core(>= 4.1.0)
Tags
![EventFlow logo](./icon-128.png)
```
$ dotnet add package EventFlow
```
EventFlow is a basic CQRS+ES framework designed to be easy to use.
Have a look at our [getting started guide](https://docs.geteventflow.net/GettingStarted.html),
the [doβs and donβts](https://docs.geteventflow.net/DosAndDonts.html) and the
[FAQ](https://docs.geteventflow.net/FAQ.html).
## Features
* **Easy to use**: Designed with sensible defaults and implementations that make it
easy to create an example application
* **Highly configurable and extendable**: EventFlow uses interfaces for every part of
its core, making it easy to replace or extend existing features with custom
implementation
* **No use of threads or background workers**
* **MIT licensed** Easy to understand and use license for enterprise
## Versions
Development of version 1.0 has started and is mainly braking changes regarding changes
related to replacing EventFlow types with that of Microsoft extension abstractions,
mainly `IServiceProvider` and `ILogger<>`.
The following list key characteristics of each version as well as its related branches
(not properly configured yet).
* `1.x`
Represents the next iteration of EventFlow that aligns EventFlow with the standard
packages for .NET (Core).
Releases here will only support .NET Standard, .NET Core
and .NET versions going forward.
- Released
- Still development
- Not all projects migrated yet
Read the [migration guide](./MIGRATION_GUIDE.md) to view the full list of breaking
changes as well as recommendations on how to migrate.
### Documentation (not complete)
Version 1.x documentation has been pulled into this repository in order to have
the code and documentation closer together and (hopefully) have the documentation
updated in the same pull-requests as any code changes.
### NuGet package status
- π’ ported
- π newly added to 1.0
- π not yet ported to 1.0
- π for packages that are removed as part of 1.0 (see the [migration guide](./MIGRATION_GUIDE.md) for details)
Projects
- π’ `EventFlow`
- π `EventFlow.AspNetCore`
- π `EventFlow.Autofac`
- π `EventFlow.DependencyInjection`
- π `EventFlow.Elasticsearch`
- π `EventFlow.EntityFramework`
- π `EventFlow.EventStores.EventStore`
- π’ `EventFlow.Hangfire`
- π’ `EventFlow.MongoDB`
- π’ `EventFlow.MsSql`
- π `EventFlow.Owin`
- π’ `EventFlow.PostgreSql`
- π `EventFlow.Redis`
- π `EventFlow.RabbitMQ`
- π’ `EventFlow.Sql`
- π `EventFlow.SQLite`
- π’ `EventFlow.TestHelpers`
### Branches
- `develop-v1`: Development branch, pull requests should be done here
- `release-v1`: Release branch, merge commits are done to this branch from
`develop-v1` to create releases. Typically each commit represents a release
* `0.x` (legacy)
The current stable version of EventFlow and has been the version of EventFlow
for almost six years.
0.x versions have .NET Framework support and limited
support to the Microsoft extension packages through extra NuGet packages.
Feature and bug fix releases will still be done while there's interest in
the community.
### Branches
- `develop-v0`: Development branch, pull requests should be done here
- `release-v0`: Release branch, merge commits are done to this branch from
`develop-v0` to create releases. Typically each commit represents a release
### Documentation
Version 0.x documentation is (although a bit outdated) is live at
https://docs.geteventflow.net/.
## Talks directly related to EventFlow
- [GOTO Aarhus 2022](https://github.com/rasmus/presentation-goto-2022) by [rasmus](https://github.com/rasmus)
Practical event sourcing using EventFlow.