getByB method

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

Implementation

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