谁能告诉我关于错字3的关系?例如,我有 2 个表,'A' 和 'B',目前我有可以将数据插入到 'A' 表中的简单表格,'A' 表字段是“name”、“id_types”、“address”。“id_types”是“B”表中的外键。而“B”表字段是“id_types”、“types_name”。我怎样才能在错字3上建立这种关系?
它与persistence_object_identifier有关吗?
这是我尝试手动添加到第二个表的代码
public function createartistAction(Artist $artist)
{
$artisttype = new Artisttype();
$artisttype->setArtisttype_name($artist->getArtisttype_id());
$this->ArtisttypeRepository->add($artisttype);
$datenow = date('d/m/Y');
$date = date_create($datenow);
$artist->setCreated_at($date);
$artist->setUpdated_at($date);
$this->addFlashMessage('Artist Created.');
$this->ArtistRepository->add($artist);
$this->redirectToUri('/artist/viewArtist');
}
任何帮助将非常感激。
谢谢