MerrionComputing / EventsSourcing-on-Azure-Functions

A library to demonstrate doing Event Sourcing as a data persistence mechanism for Azure Functions
MIT License
103 stars 20 forks source link

Event grid notification does not include event context #28

Closed MerrionComputing closed 4 years ago

MerrionComputing commented 4 years ago

The correlation identifier / causation identifier and any other event context need to be included in the [new entity] or [new event] notification sent out by event grid.

MerrionComputing commented 4 years ago

This should take the WriteContext used to write the event that triggered the notification.

MerrionComputing commented 4 years ago

Added to the event grid message payload for both types of notification

MerrionComputing commented 4 years ago

Checked in bank account example, and documentation (wiki) updated.