You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 24, 2023. It is now read-only.
We were expecting to see metadata in RecordedEvent when reading events, which we wrote with certain metadata.
I think it would make sense to add it to the recorded event.
What do you guys think?
Cheers
public struct RecordedEvent
{
public T GetObject<T>() where T : class;
public object GetObject(Type t);
public string EventStreamId { get; set; }
public long EventNumber { get; set; }
public string EventType { get; set; }
public JToken Data { get; set; }
public JToken Metadata { get; set; }
}