sqlSelectByIdsRaw method

Iterable<List> sqlSelectByIdsRaw(
  1. List<int> ids
)

Select raw values from theys ids

Implementation

Iterable<List> sqlSelectByIdsRaw(List<int> ids) => sqlSelectRaw(
      'WHERE ${columnId.name} IN (${ids.map((e) => '?').join(', ')})',
      ids,
    );