Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
コントローラーで新しいエンティティを作成し、すべてのフィールドを $POST で受け取ったもので設定しますか、それとも自動的に行う方法がありますか?
あなたの投稿は情報が少し不足していますが、通常、はい、暗黙的に新しいエンティティを作成する必要があります
$entity = new Entity; $entity->setFoo($bar); $this->entityManager->persist($entity); $this->entityManager->flush();