EntityDb.Abstractions 9.2.0

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

// Install EntityDb.Abstractions as a Cake Tool
#tool nuget:?package=EntityDb.Abstractions&version=9.2.0

EntityDb.NET Codacy Badge Codacy Badge Build

At its core, EntityDb.NET is a set of abstractions and implementations for the Event Sourcing pattern, with the added ability to enforce uniqueness constraints and the ability to tag resources.

What is Event Sourcing?

Event Sourcing centers around the idea that your source of truth is not the current state, it is all of the deltas that add up to the current state. Consider your personal bank - which of these options do you think it their source of truth for account balances?

  • Option A - Table Rows
    • John Doe has $123.45 in Account A
    • Jane Doe has $678.90 in Account B
  • Option B - Transactions
    • John Doe deposited $100.00 in Account A
    • Jane Doe deposited $600.00 in Account B
    • John Doe deposited $20.00 in Account A
    • Jane Doe deposited $70.00 in Account B
    • John Doe deposited $3.45 in Account A
    • Jane Doe deposited $8.90 in Account B

The answer is pretty obvious if you go check your bank statement. They keep a set of transactions, and regurgitate that information on the statement. (If I'm wrong, you should consider getting a new bank, ASAP!)

How does EntityDb.NET implement Event Sourcing?

There are several core objects at the heart of this implementation. Encalsulating these objects are various repositories.

  1. Transaction Repository
    • Agents
    • Commands
    • Tags
    • Leases
  2. Snapshot Repository
    • Snapshots
  3. Entity Repository
    • Transaction Repository
    • Optional: Snapshot Repository
  4. Projection Repository
    • Transaction Repository
    • Optional: Snapshot Repository

Transactions

A transaction represents an atomic operation on multiple entities. A transaction is committed atomically or not at all. If some step in the transaction fails, the entire transaction should fail.

Agents

An agent is an actor that can execute transactions. For example, if a transaction is initiated via an HTTP API, you might use the HttpContextAgent - it's signature includes headers and connection information, and it uses the ClaimsPrincipal to decide if an agent has a particular role required for authorized commands.

Commands

A command represents the intent to perform some operation on a single entity. Going back to the bank account example, one command could be PerformDeposit while another could be PerformWithdrawl. The things that you can do are commands.

Tags

A tag is a way to index entities by some piece of information. A tag can have a label and a value, both of which are strings. Many accounts are typed, and you could represent this with a tag where Label is Type and Value is Savings or Checking. You could then run a query to get the account id of all accounts where Label is Type and Value is Savings. The number of savings accounts in the system would be the number of entity ids.

Leases

A lease is like a tag, except that it has a uniqueness constraint. Many banks have online portals, allowing bank members to see their accounts on the internet. From the bank's perspective, all of the accounts should be tied to a member id, probably a guid. But the member will not want to remember nor lookup this guid - they will want to use a username. What you can do in EntityDb is make a lease for member entities where the entity id is the member id, the Label is Username and the Value is whatever username the member wants to use. If an attempt to commit a transaction is made that would violate the uniqueness constraint, it will be rejected. (This is obnoxious behavior for the user, though, so the bank should check before attempting to commit to see if the username is available and give immediate feedback to choose a different username).

Snapshots

A snapshot is a stateful object at a given point in time. They always have an identifier and a version number. Together, the identifier and version number called a pointer. You can request different versions of a given snapshot by using different pointers!

In the context of snapshots, the reserved version number is reserved for pointing to the latest snapshot. So if you want the latest version, you use a pointer with the exact id and the reserved version number. If you want a specific version, you can create pointer with the exact id and version number you want.

The balance on your bank account is a snapshot. You can build that snapshot by summing all of the deposits and withdrawls on your account. If you look at the bank statements, you will most likely see the snapshot of each bank account for that statement, along with all of the deposits, withdrawls, and interest.

Entities

An entity is conceptually an aggregate root inside of a bounded context, and it extends the concept of a snapshot. In the banking example, there are multiple entities. You have a membership at the bank. That's an entity. You probably have a checking account. That's an entity. And you might even have a savings account. That is also an entity!

Which bounded contexts these entiies live in is up to the business.

Projections

A projection is an aggregate, but notably not the aggregate root, and it too extends the concept of a snapshot. In the banking example, one example of a projection could be your entire account balance. It can be anything, though! You are not constrained in what data you want to use for your projection.

Communications

  • Coming Soon!<sup>TM</sup>
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 was computed.  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 EntityDb.Abstractions:

Package Downloads
EntityDb.Common

A standard set of implementations (excluding persistence) of the EntityDb abstraction layer.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
9.2.0 206 8/30/2023
9.1.0 181 8/30/2023
9.0.0 501 11/20/2022
8.1.1 423 9/5/2023
8.0.4 981 11/24/2022
8.0.3 1,427 9/8/2022
8.0.2 1,328 8/8/2022
8.0.1 1,418 8/7/2022
8.0.0 1,012 8/7/2022
7.1.1 1,017 9/7/2022
7.1.0 1,035 7/10/2022
7.0.0 1,060 7/4/2022
6.7.0 1,042 6/24/2022
6.6.0 1,012 6/24/2022
6.5.0 1,064 5/19/2022
6.4.0 1,025 5/19/2022
6.3.0 1,024 5/18/2022
6.2.0 1,149 4/6/2022
6.1.0 1,101 4/6/2022
6.0.2 1,090 4/6/2022
6.0.1 1,058 4/6/2022
6.0.0 1,058 3/30/2022
5.0.0 1,021 2/27/2022
4.0.1 595 12/29/2021
4.0.0 540 12/29/2021
3.6.0 597 12/20/2021
3.5.0 602 12/19/2021
3.4.0 608 12/18/2021
3.3.0 614 12/18/2021
3.2.0 716 10/8/2021
3.1.0 688 10/7/2021
3.0.0 696 10/7/2021
2.3.0 674 10/6/2021
2.2.0 748 10/1/2021
2.1.3 739 9/27/2021
2.1.2 698 9/26/2021
2.1.1 682 9/26/2021
2.1.0 730 9/26/2021
2.0.3 627 9/17/2021
2.0.2 658 9/12/2021
2.0.0 678 7/22/2021
1.0.9 641 6/19/2021
1.0.8 632 6/17/2021
1.0.7 647 6/15/2021
1.0.6 681 6/15/2021
1.0.5 640 6/8/2021
1.0.4 671 5/28/2021
1.0.3 621 5/27/2021
1.0.2 150 5/27/2021
1.0.1 584 5/26/2021
1.0.0 659 5/24/2021