doInsertRelationshipSQL method

FutureOr doInsertRelationshipSQL(
  1. String entityName,
  2. String table,
  3. SQL sql,
  4. Transaction transaction,
  5. C connection,
)

Implementation

FutureOr<dynamic> doInsertRelationshipSQL(String entityName, String table,
    SQL sql, Transaction transaction, C connection) {
  return doInsertSQL(entityName, table, sql, transaction, connection);
}