So far so good, but now I want to extend the data from the Model_Animal with the new value rom $xml. How can I do that?
I tried the following:
1) Read out the data array: $animal_array = $animal->to_array(); 2) Store all again together: $animal = Model_Animal::forge()->set(array( $animal_array, 'xml' => $xml, ));
But with no luck, _data is always empty after this step.