Rasmus Mikkelsen

Results 194 comments of Rasmus Mikkelsen

@Kladzey would you be able to create a test that triggers the error as an PR?

@frenchyjef it would be great to have the dependencies updated. Are there any issues with backward compatibility?

@frenchyjef its the change `EventStore.Client` to `EventStore.Client.Grpc.Streams` along with the major version bump. Does this change which versions of EventStore that is supported? If yes, then please put it in...

A very valid point, but as the is a breaking change, we'll have to wait with doing the change until a major increment.

Hi @Athosone Just to make sure that I fully understand, you want to read the aggregate as it looked at a specific point in time? If so, then no, there...

@Athosone did you see https://github.com/eventflow/EventFlow/issues/570

Something like ```csharp // Load events representing version var domainEvents = IEventStore.LoadEventsAsync(id) domainEvents = domainEvents.Where(e => e.AggregateSequenceNumber < selected version).ToList() // Apply to empty aggregate var aggregate = IAggregateFactory.CreateNewAggregateAsync(id) aggregate.ApplyEvents(domainEvents)...

@RTodorov the persistence layer in EventFlow is defined by the [`IEventPersistence`](https://github.com/eventflow/EventFlow/blob/develop/Source/EventFlow/EventStores/IEventPersistence.cs) which isn't that complex. You could get some inspiration for how to implement it by looking at some of...

Build is broken, I'll have a look

This is great @Yaevh there's still some evaluation if one of the JSON support should be moved to a separate NuGet package (maybe Newtonsoft), but getting this in will make...