selectRelationshipsSQL method

FutureOr<Iterable<Map<String, dynamic>>> selectRelationshipsSQL(
  1. TransactionOperation op,
  2. SQL sql,
  3. List ids,
  4. String otherTableName,
)

Implementation

FutureOr<Iterable<Map<String, dynamic>>> selectRelationshipsSQL(
    TransactionOperation op,
    SQL sql,
    List<dynamic> ids,
    String otherTableName) {
  return databaseAdapter.selectRelationshipsSQL(
      op, name, tableName, sql, ids, otherTableName);
}