getWhereClause static method
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 ');
}