I have a bellow situation.
I am adding values to Kendo Grid. There is an unique key for each user who is going to supply different materials like Pen, Book, NotePad.
I am adding only Product Code, Product Name to my grid. After adding multiple fields I have to add this records into database with only one User Id and multiple product details
My View is as like
I have two tables as
Product
Id | FK_UserId | P_Code | P_Name |
1 | 1 | 1 | Pen |
2 | 1 | 3 | Book |
3 | 1 | 4 | NotePad |
How can I insert this by using kendo UI MVC.