getWhereClause static method

String getWhereClause(
  1. List<String> groupPrimaryKey
)

Creates the WHERE clause in order to select the rows to be changed

Implementation

static String getWhereClause(final List<String> groupPrimaryKey) {
  return groupPrimaryKey.map((columnName) => '$columnName = ?').join(' AND ');
}