there is a many to many relationship between Orders and Products tables, join table was automaticaly generated by ef, when an order is placed, in the controller I need to access the join table to change the property “Quantity”, but i can’t reach it because the OrderProduct model is not on the context class.
I’ll show you some images, i hope you give me a solution, help me please. 🙂
[DB-Context class](https://i.stack.imgur.com/TpyV8.png) [Order class](https://i.stack.imgur.com/KoOgD.png) [Product class](https://i.stack.imgur.com/RkKNQ.png) [OrderProduct class](https://i.stack.imgur.com/Vu5E5.png)
I am very grateful to those who will help me, because I do not know well EntityFramework and I can not solve the problem,
best regards, Luca.
I tryed to add OrderProduct class to context class but it doesn’t work and i tryed to find the solution on google, but i can’t fix it.