How to get multiple row of single Item in MVC
I have a table of Item and their quantity,
I want all rows according Quantity of single item in MVC
Like i have a table records in this format
| Item Code |
Quantity |
| 12345 |
10 |
But i want to display like this in mvc
| 12345 |
1 |
| 12345 |
2 |
| 12345 |
3 |
| 12345 |
4 |
| 12345 |
5 |
| 12345 |
6 |
| 12345 |
7 |
| 12345 |
8 |
| 12345 |
9 |
| 12345 |
10 |