generateInsertRelationshipSQLs method

FutureOr<List<SQL>> generateInsertRelationshipSQLs(
  1. Transaction transaction,
  2. String field,
  3. dynamic id,
  4. String otherTableName,
  5. List otherIds,
)

Implementation

FutureOr<List<SQL>> generateInsertRelationshipSQLs(Transaction transaction,
    String field, dynamic id, String otherTableName, List otherIds) {
  return databaseAdapter.generateInsertRelationshipSQLs(
      transaction, name, tableName, field, id, otherTableName, otherIds);
}