getByRowids method

Iterable<DataRef> getByRowids(
  1. Iterable<int> ids
)

Implementation

Iterable<DataRef> getByRowids(Iterable<int> ids) => sqlSelect(
      'WHERE ROWID IN (${sqlQueryRowBindings(ids.length)})',
      ids.toList(),
    );