Skip to content

Commit 33c551e

Browse files
committed
Updated readme
1 parent c05955f commit 33c551e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ A microservice consists of:
6969
- **Queries**: Queries used to get data when client wants to read data.
7070
- **Commands**: Commands used to write data when client wants to modify data.
7171
- **EventHandlers**: Handlers for events to take action when events are being published.
72-
- **Repository**: Repository used with eventsourcing when modifying data in the application. This will also publish the correct events.
72+
- **Repository**: Repository used with event sourcing when modifying data in the application. This will also publish the correct events.
7373

7474
Next to the microservice is the data model. This contain the migrations, models and update handlers (if using event sourcing) for the database.
7575
<br />
@@ -81,7 +81,7 @@ Infrastructure contains the logic for the different services and keeps most of t
8181

8282
- [Consul](#Consul)
8383
- [Core](#Core)
84-
- [Eventstore](#Eventstore)
84+
- [EventStore](#EventStore)
8585
- [Logging](#Logging)
8686
- [MessageBrokers](#MessageBrokers)
8787
- [Outbox](#Outbox)
@@ -122,10 +122,10 @@ Core contain basic functionalities and must be imported most of the other servic
122122

123123
`AddCore` is used with a type from each project that needs to include CQRS.
124124

125-
#### Eventstores
126-
Event store is a database where all events published in the application are stored. This is used with eventsourcing and will be a write model for the application.
125+
#### Event stores
126+
Event store is a database where all events published in the application are stored. This is used with event sourcing and will be a write model for the application.
127127

128-
At the moment the eventstores supported are *MongoDb* and *EF core*.
128+
At the moment the event stores supported are *MongoDb* and *EF core*.
129129

130130
`AddEventStore` is used with the aggregate as the type, and the Configuration and DbContextOptionsBuilder (only used with EF core) to include event store in the application.
131131

0 commit comments

Comments
 (0)