I've encountered multiple situations where a service required access to event-level data from an event-sourced entity. More recently, while using agents, the events from the SessionMemoryEntity, there are use cases where projecting these events into a view would be helpful.
Of course, it is possible to implement this with a consumer-to-entity-to-view flow. But this pattern comes up often enough to warrant adding a more efficient flow.
Just a suggestion for your consideration.
I've encountered multiple situations where a service required access to event-level data from an event-sourced entity. More recently, while using agents, the events from the
SessionMemoryEntity, there are use cases where projecting these events into a view would be helpful.Of course, it is possible to implement this with a consumer-to-entity-to-view flow. But this pattern comes up often enough to warrant adding a more efficient flow.
Just a suggestion for your consideration.