Skip to content
New issue

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

Providing a version for aggregating that is too high should aggregate to null #3078

Open
erdtsieck opened this issue Mar 21, 2024 · 0 comments

Comments

@erdtsieck
Copy link
Contributor

// Given
var streamId = Guid.NewGuid();
var options = new StoreOptions();
options.Connection(ConnectionSource.ConnectionString);
options.Projections.LiveStreamAggregation<PolledAggregate>();

// When
var store = new DocumentStore(options);
var session = store.LightweightSession();
session.Events.Append(streamId, new PollingShouldFail(streamId));
await session.SaveChangesAsync();

// Then
var aggregate = await session.Events.AggregateStreamAsync<PolledAggregate>(streamId, 2);
aggregate.ShouldBeNull();
erdtsieck added a commit to erdtsieck/marten that referenced this issue Mar 21, 2024
jeremydmiller added a commit that referenced this issue Apr 10, 2024
jeremydmiller added a commit that referenced this issue Apr 10, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant