Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
CeEv committed Aug 28, 2024
1 parent 27ac208 commit 4ea0465
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/Informations/domain-driven-design.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ This include a lot more then only DDD, but DDD support us that the DDD layer, t
- https://martinfowler.com/bliki/EvansClassification.html [1]

### Entity (Domain Object)
In our backend code we use microORM as ORM for our database.
The datarecords from the microORM are marked as Entities, therefore we hat a decorator and name conflict,
with the real DDD entity. We solve it by calling the DDD entities "domain object".

"Objects that have a distinct identity that runs through time and different representations. You also hear these called 'reference objects'."[1]

#### Note
In our backend code we use microORM as ORM for our database.
The datarecords from the microORM are marked as Entities from the framework it self. Therefore we had a decorator name and name conflict with the real DDD entity. We solve it by calling the DDD entities in our project "domain object".

### Value Object
"Objects that matter only as the combination of their attributes. Two value objects with the same values for all their attributes are considered equal. I also describe value objects in P of EAA." [1]

Expand Down

0 comments on commit 4ea0465

Please sign in to comment.