I am a newbie with ASP.NET MVC 5 design-Pattern. Kindly look at my problem and please help me in following scenario.
Here it is my table structure:
Order ( Id | CustomerName | OrderDate )
OrderDetail ( Id | OrderId | ProductId | Quantity )
Product ( Id | Name )
Order can have more than one detail, mean while detail has reference to product table. I want to create a screen where user can create new order, select products and also define quantity against each product.
I was not able to get a start point for create screen of this scenario in MVC Pattern.
Thanks.