Skip to content

Commit bca3d6c

Browse files
committed
Added link to RaiseSideffects docs
1 parent 5817edb commit bca3d6c

File tree

3 files changed

+2
-8
lines changed

3 files changed

+2
-8
lines changed

Workshops/IntroductionToEventSourcing/17-Projections.MultiStream.Marten/ProjectionsTests.cs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,6 @@ bool IsAcceptable
2727
);
2828

2929
// ENUMS
30-
public enum VerificationStatus
31-
{
32-
Pending,
33-
Passed,
34-
Failed
35-
}
3630

3731
public enum PaymentStatus
3832
{

Workshops/IntroductionToEventSourcing/17-Projections.MultiStream.Marten/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Events arrive from three different streams (payment, merchant, and fraud check),
1717
## Steps
1818

1919
1. Create a `PaymentVerificationProjection` class with `Handle` methods for each event type
20-
2. Register your handlers using `eventStore.Register`
20+
2. Register your handlers using document store options `options.Projections.Add` as inline.
2121
3. Implement decision logic in the `FraudScoreCalculated` handler (always last for completed payments):
2222
- Reject if merchant failed
2323
- Reject if fraud score > 0.75

Workshops/IntroductionToEventSourcing/18-Projections.MultiStream.OutOfOrder.Marten/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Learn how to build resilient Marten projections that work even when events arriv
1010

1111
Same out-of-order context as Exercise 16: events can arrive in any order (e.g., from different RabbitMQ queues or Kafka topics). The projection from Exercise 17 assumes ordered events — run the test to see it fail.
1212

13-
**Emit event when payment verification is completed**.
13+
**Emit event when payment verification is completed**. Use [`RaiseSideEffects`method from Marten projections](https://martendb.io/events/projections/side-effects.html#side-effects)
1414

1515
## Reference
1616

0 commit comments

Comments
 (0)