Hello Guys
I have the following lines. The problem is that the first event from the stream is ignored. checkpointValue can be null. I thought StreamPosition.Start would have done the job. I am using .net grpc client
var checkpointValue = await GetCheckpoint(_streamName);
var streamPosition = checkpointValue.HasValue ? StreamPosition.FromInt64(checkpointValue.GetValueOrDefault()) : StreamPosition.Start;