I have table cart & cart_option.
Cart
- id (PK)
- cart_number
- total
Cart_option
- id (PK)
- cart_number (FK)
Here is my entity for CartOption
#[ORM\ManyToOne(targetEntity: Cart::class, inversedBy: 'cartItems')]
#[ORM\JoinColumn(nullable: false)]
private ?Cart $cartNumber;
Now when I try to insert, I am getting this error: An exception occurred while executing a query: SQLSTATE[42S22]: Column not found: 1054 Unknown column 'cart_number_id' in 'field list'
This is the code, I have tried
$cart = $this->entityManager
->getRepository(Cart::class)
->findOneBy(['cartNumber' => $cartNumber]);
$option = new CartOption();
$option->setCartNumber($cart);
You have to specify the column name. Indeed, you do not follow the standard conventions of Doctrine.
See this doc
You should declare like this