public async Task DeleteEventsAsync(string actorName, long inclusiveToIndex)
 {
     await EventCollection.DeleteManyAsync(e => e.ActorName == actorName && e.EventIndex <= inclusiveToIndex);
 }