add method

Future<List<K>> add (
  1. DatabaseClient client,
  2. List<V> values
)

Create records that don't exist.

The list of values must match the list of keys.

Returns a list of the keys, if not inserted, a key is null.

Implementation

Future<List<K>> add(DatabaseClient client, List<V> values);