Fluxera.Entity
7.1.6
Prefix Reserved
See the version list below for details.
dotnet add package Fluxera.Entity --version 7.1.6
NuGet\Install-Package Fluxera.Entity -Version 7.1.6
<PackageReference Include="Fluxera.Entity" Version="7.1.6" />
paket add Fluxera.Entity --version 7.1.6
#r "nuget: Fluxera.Entity, 7.1.6"
// Install Fluxera.Entity as a Cake Addin #addin nuget:?package=Fluxera.Entity&version=7.1.6 // Install Fluxera.Entity as a Cake Tool #tool nuget:?package=Fluxera.Entity&version=7.1.6
Fluxera.Entity
An aggregate root and entity objects library.
This library helps in implementing Entity, Aggregate Root and Domain Events. The base class for entities implement Equality and Uniqueness based on selected attributes of the entity instead of the references.
Equality and Uniqueness
The equality check consist of two major steps:
1.) When comparing two entities for Equality at first we check if the entites are both not transient and their IDs are equal. In this case the entites are considered equal, even if their values are different.
2.) If the first step did not signal Equality we check if the entities are both transient
and their domain signature attributes are equal. You define which attributes of the entity make
up their domain signature by adding the [DomainSignature]
attribute to the corresponding
properties. The attributes are then picked up by the default implementation using reflection.
If you do not want to use the default implementation you can override the GetEqualityComponents()
method an return the values to use manually.
Domain Events
This library provides the infrastructure to implement, register and dispatch domain events from
entities to loosely-coupled domain event handlers. You can add events to the DomainEvents
collection of an entity and implement two different types of domain event handlers for it.
This library provides the nessessary dispatcher service which can be used to integrate the event dispatching in a Repository implementation.
IDomainEventHandler
A domain event handler of this type will be executed before a Repository adds or updates the entity in the storage.
ICommittedDomainEventHandler
A domain event handler of this type will be executed after a Repository adds or updates the entity in the storage.
Usage
public class Employee : AggregateRoot<Employee>
{
[DomainSignature]
public string Name { get; set; }
[DomainSignature]
public int EmployeeNumber { get; set; }
public decimal Salary { get; set; }
public void GiveRaise(decimal raiseAmount)
{
Guard.Against.NegativeOrZero(raiseAmount, nameof(raiseAmount));
this.Salary += raiseAmount;
this.DomainEvents.Add(new SalaryRaisedEvent(this.Salary));
}
}
public class SalaryRaisedEvent : IDomainEvent
{
public SalaryRaisedEvent(decimal newSalary)
{
this.NewSalary = newSalary;
this.HandlerNames = new List<string>();
}
public decimal NewSalary { get; }
}
public class SalaryRaisedEventHandler : IDomainEventHandler<SalaryRaisedEvent>
{
public Task HandleAsync(SalaryRaisedEvent domainEvent)
{
// Do something ...
return Task.CompletedTask;
}
}
public class SalaryRaisedEventHandler : ICommittedDomainEventHandler<SalaryRaisedEvent>
{
public Task HandleAsync(SalaryRaisedEvent domainEvent)
{
// Do something ...
return Task.CompletedTask;
}
}
// A domain event support.
services.AddDomainEvents(builder =>
{
builder
.AddDomainEventHandlers<SalaryRaisedEventHandler>()
.AddDomainEventHandlers<AdditionalSalaryRaisedEventHandler>()
.AddDomainEventHandlers<SalaryRaisedCommittedEventHandler>();
});
IDomainEventDispatcher dispatcher = /* Get the dispatcher ... */;
SalaryRaisedEvent salaryRaisedEvent = new SalaryRaisedEvent(100_000);
await dispatcher.DispatchAsync(salaryRaisedEvent);
await dispatcher.DispatchCommittedAsync(salaryRaisedEvent);
References
Jimmy Bogard - A better domain events pattern
Product | Versions 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. |
-
net7.0
- Fluxera.ComponentModel.Annotations (>= 7.1.1)
- Fluxera.Guards (>= 7.1.1)
- Fluxera.StronglyTypedId (>= 7.1.6)
- JetBrains.Annotations (>= 2023.2.0)
- Microsoft.CSharp (>= 4.7.0)
- Microsoft.Extensions.DependencyInjection (>= 7.0.0)
- System.ComponentModel.Annotations (>= 5.0.0)
NuGet packages (3)
Showing the top 3 NuGet packages that depend on Fluxera.Entity:
Package | Downloads |
---|---|
Fluxera.Repository.Abstractions
The abstractions for the generic repository implementation. |
|
Fluxera.Repository
A generic repository implementation. |
|
Fluxera.Extensions.Hosting.Modules.Domain
A module that enables the domain. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
9.0.1 | 238 | 11/16/2024 |
9.0.0 | 124 | 11/14/2024 |
8.3.4 | 401 | 11/1/2024 |
8.3.3 | 93 | 7/9/2024 |
8.3.2 | 1,000 | 6/12/2024 |
8.3.1 | 206 | 6/8/2024 |
8.3.0 | 682 | 5/26/2024 |
8.2.1 | 108 | 5/24/2024 |
8.2.0 | 552 | 4/28/2024 |
8.1.2 | 1,116 | 4/25/2024 |
8.1.1 | 102 | 4/25/2024 |
8.1.0 | 117 | 4/25/2024 |
8.0.7 | 1,646 | 4/18/2024 |
8.0.6 | 725 | 4/13/2024 |
8.0.5 | 243 | 4/13/2024 |
8.0.4 | 451 | 3/19/2024 |
8.0.3 | 1,227 | 2/22/2024 |
8.0.2 | 2,918 | 1/4/2024 |
8.0.1 | 999 | 11/23/2023 |
8.0.0 | 781 | 11/15/2023 |
7.1.7 | 774 | 7/23/2023 |
7.1.6 | 425 | 7/20/2023 |
7.1.5 | 716 | 6/21/2023 |
7.1.4 | 2,843 | 4/13/2023 |
7.1.3 | 1,080 | 3/16/2023 |
7.1.2 | 1,212 | 2/27/2023 |
7.1.1 | 1,258 | 1/22/2023 |
7.1.0 | 814 | 1/18/2023 |
7.0.6 | 2,149 | 12/13/2022 |
7.0.5 | 1,702 | 12/9/2022 |
7.0.4 | 1,132 | 11/19/2022 |
7.0.3 | 344 | 11/18/2022 |
7.0.2 | 352 | 11/15/2022 |
7.0.1 | 857 | 11/12/2022 |
7.0.0 | 375 | 11/9/2022 |
6.1.11 | 2,306 | 10/12/2022 |
6.1.10 | 8,140 | 9/15/2022 |
6.1.9 | 2,329 | 7/30/2022 |
6.1.8 | 2,370 | 6/30/2022 |
6.1.7 | 2,379 | 6/15/2022 |
6.1.6 | 3,386 | 6/7/2022 |
6.1.5 | 1,537 | 6/3/2022 |
6.1.4 | 2,619 | 6/1/2022 |
6.1.3 | 2,618 | 5/31/2022 |
6.1.2 | 2,332 | 5/30/2022 |
6.1.1 | 3,422 | 5/29/2022 |
6.1.0 | 3,431 | 5/28/2022 |
6.0.16 | 5,522 | 5/18/2022 |
6.0.15 | 3,815 | 5/5/2022 |
6.0.14 | 2,609 | 4/20/2022 |
6.0.13 | 3,562 | 4/11/2022 |
6.0.11 | 5,049 | 3/24/2022 |
6.0.10 | 1,703 | 2/17/2022 |
6.0.9 | 1,166 | 12/17/2021 |
6.0.7 | 378 | 12/16/2021 |
6.0.5 | 476 | 12/13/2021 |
6.0.3 | 460 | 12/11/2021 |