0
實體名稱爲Country
和Region
。我有兩個實體和兩個存儲庫。如何將數據保存在實體中?
存儲庫命名爲CountryRepository
和RegionRepository
。
如何將數據存儲在Region
實體中?
$em = $this->container->get('doctrine')->getEntityManager();
$countryId=$em->getRepository('LocationBundle:Country')->find(1));
$region=new Region(); //How to create Region Ojbect
$region->setCountryId($countryId);
$region->setName('abc');
$region->save();
閱讀這裏的文檔,更好... http://docs.doctrine-project.org/ EN/2.0.x版本/參考/工作與 - objects.html#持續存在的實體 – pbenard