public enum SeekType
Remarks
Indicates if hard or soft seek is used when performing a Seek operation. Use of soft seek allows a record to be found with the next higher key value if the given key does not exist.
Name |
Description |
SoftSeek |
Allows record to be found with the next higher key value if the given key does not exist. |
HardSeek |
Seeks an exact match. |
SeekLast |
Seeks for the last value in an index. |
SeekGT |
Seeks for the next possible index key after the given key. |
See Also