We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In order to support roundtripping the EventId used to identify and/or deduplicate events in EventStore, SqlStreamStore and more:
EventId
IEventData
Guid
TimelineEvent
Guid.Empty
EventData
Guid.NewGuid()
The text was updated successfully, but these errors were encountered:
Add EventId to IEventData re #35 (#36)
6a6122d
No branches or pull requests
In order to support roundtripping the
EventId
used to identify and/or deduplicate events in EventStore, SqlStreamStore and more:IEventData
should expose it (as aGuid
)TimelineEvent
ctor should all-but require one (default toGuid.Empty
if nothing relevant available on a given store)EventData
ctor should default it toGuid.NewGuid()
The text was updated successfully, but these errors were encountered: