实体命名为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();