FdbFetchMode
Namespace: FoundationDB.Client · enum
Implements: IComparable, ISpanFormattable, IFormattable, IConvertible
Defines if the range read will only return the keys, values or both.
Fields
KeysAndValues
KeysAndValues = 0
Read both keys and values (default)
When exposed as a , both and will be filled with the results
KeysOnly
KeysOnly = 1
Read only the keys. The values will be set to Nil
When exposed as a , only will be filled, and will be empty
ValuesOnly
ValuesOnly = 2
Read only the values. The keys will be set to Nil
When exposed as a , only will be filled, and will be empty