If I create a new Doctrine object, with lots of relations, should I save() these relations before assigning them to newly created object? E.g.
$main = new Main();
$child = new Child();
$main->child_rel = $child; // do I need to save the child obj explicitly?
$main->save();
Ben ebeveyn otomatik geçişli kaydeder arayacak, ama bu yeni oluşturulmuş bir üst nesne için durum böyle görünmüyor varsayılır.
Nasıl gerçekten işe yarıyor mu?