getIn<T extends Table, D> method
Implementation
@override
Future<List<D>> getIn<T extends Table, D>(
Expression<Object?> column,
List<Object?> values,
) async {
try {
final table = _getTable<T, D>();
return await (_database.select(
table,
)..where((_) => column.isIn(values))).get();
} catch (e) {
throw DatabaseBridgeException(error: e);
}
}