Skip to content

Commit

Permalink
Event operations are performed before document operations. Important …
Browse files Browse the repository at this point in the history
…for later event store optimizations
  • Loading branch information
jeremydmiller committed Jul 19, 2024
1 parent 376da5b commit 40ba8e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Marten/Internal/UnitOfWork.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public void Add(IStorageOperation operation)
}
}

public IReadOnlyList<IStorageOperation> AllOperations => _operations.Concat(_eventOperations).ToList();
public IReadOnlyList<IStorageOperation> AllOperations => _eventOperations.Concat(_operations).ToList();

public void Sort(StoreOptions options)
{
Expand Down

0 comments on commit 40ba8e5

Please sign in to comment.