Is there a way to store the related records of a relationship at once? E.g.: if I have a University class and a university can have many faculties, is it possible to do something like this?:
$uni = new Dataface_Record('universities', array(...));
$uni->save();
$uni->save_related('faculties', array-of-faculties);
It would be nice to have a function that deletes the faculties that are no longer in the relationship, update the ones that changed and insert the new ones.
The framework is pretty nice, but maybe that's asking too much...

J.