SdbTransactionStoreRefExtension<K extends SdbKey, V extends SdbValue>  extension 
 
Transaction store actions.
- on
- 
          - SdbTransactionStoreRef<K, V> 
 
- SdbTransactionStoreRef<
Properties
- autoIncrement → bool
- 
      Available on SdbTransactionStoreRef< Auto increment.K, V> , provided by the SdbTransactionStoreRefExtension extensionno setter
- keyPath → Object?
- 
      Available on SdbTransactionStoreRef< Key Path.K, V> , provided by the SdbTransactionStoreRefExtension extensionno setter
- name → String
- 
      Available on SdbTransactionStoreRef< store name.K, V> , provided by the SdbTransactionStoreRefExtension extensionno setter
Methods
- 
  add(V value) → Future< K> 
- 
      Available on SdbTransactionStoreRef< Add.K, V> , provided by the SdbTransactionStoreRefExtension extension
- 
  count({SdbBoundaries< K> ? boundaries}) → Future<int> 
- 
      Available on SdbTransactionStoreRef< Count record.K, V> , provided by the SdbTransactionStoreRefExtension extension
- 
  delete(K key) → Future< void> 
- 
      Available on SdbTransactionStoreRef< Delete.K, V> , provided by the SdbTransactionStoreRefExtension extension
- 
  deleteRecords({SdbBoundaries< K> ? boundaries, int? offset, int? limit, bool? descending}) → Future<void> 
- 
      Available on SdbTransactionStoreRef< Delete records.K, V> , provided by the SdbTransactionStoreRefExtension extension
- 
  exists(K key) → Future< bool> 
- 
      Available on SdbTransactionStoreRef< True if the record exists.K, V> , provided by the SdbTransactionStoreRefExtension extension
- 
  findRecordKeys({SdbBoundaries< K> ? boundaries, int? offset, int? limit, bool? descending}) → Future<List< SdbRecordKey< >K, V> >
- 
      Available on SdbTransactionStoreRef< Find record keys.K, V> , provided by the SdbTransactionStoreRefExtension extension
- 
  findRecords({SdbBoundaries< K> ? boundaries, SdbFilter? filter, int? offset, int? limit, bool? descending}) → Future<List< SdbRecordSnapshot< >K, V> >
- 
      Available on SdbTransactionStoreRef< Find records.K, V> , provided by the SdbTransactionStoreRefExtension extension
- 
  getRecord(K key) → Future< SdbRecordSnapshot< K, V> ?>
- 
      Available on SdbTransactionStoreRef< Get a single record.K, V> , provided by the SdbTransactionStoreRefExtension extension
- 
  put(K? key, V value) → Future< void> 
- 
      Available on SdbTransactionStoreRef< Put.K, V> , provided by the SdbTransactionStoreRefExtension extension