public function _prepareParams($primaryKey)
{
$allValues = array();
foreach ($this->_models as $model) {
$attributes = $model->definedAttributes();
unset($attributes[$primaryKey]);
$values = array_values($attributes);
$allValues = array_merge($allValues, $values);
}
return $allValues;
}