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
It would be valuable if EventStore is able to load multiple aggregates by providing single key.
For example the API will look like
// Returns all events of all aggregates related to the provided key.// The result may contain: License, Location, Addreess and etc aggreegatesval events = eventStore.getEventsByKey("Customer:123")
// Returns all Licenses attached to the provided customerval licenses = eventStore.getAggregatesByKey("Customer:123", LicenseAggregate.key);
For small collections it will ensure that data is consistent and will skip view creation at some places.
Here is a prototype of the message definition which could be persisted in the datastore:
It would be valuable if EventStore is able to load multiple aggregates by providing single key.
For example the API will look like
For small collections it will ensure that data is consistent and will skip view creation at some places.
Here is a prototype of the message definition which could be persisted in the datastore:
The text was updated successfully, but these errors were encountered: