public IEnumerable <(byte[] Key, byte[] Value)> Seek(byte[]?key, SeekDirection direction) { if (disposed || db.Handle == IntPtr.Zero) { throw new ObjectDisposedException(nameof(RocksDbStore)); } return(db.Seek(columnFamily, key, direction, readOptions)); }