public bool MoveNext()
        {
            if (_cursor == null)
            {
                throw new InvalidOperationException("cannot iterate errored cursor");
            }

            return(_cursor.GetNext(out _current));
        }