Replies: 1 comment
-
Help please ? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi everyone,
I’m trying to create a composite projection in Marten that correlates two different events but I’m struggling to achieve the desired result.
Here are the events I have:
I want to create a projection that, when processing these events, builds the following final object:
The event flow is:
1 - First, Event1 is dispatched.
2 - Later, Event2 is dispatched, which contains a reference to Event1 via EventExample1Code.
Problem:
I’m unable to correlate these events to build the final composite projection.
What is the best approach to correlate events in Marten to build a projection that depends on data from previous events?
Is there a recommended way to store or reference data from earlier events inside a Marten projection?
How should I properly correlate these events to create the desired structure?
Beta Was this translation helpful? Give feedback.
All reactions