I have a problem I have to solve. Can I convert the resultset below to editable pivot using Entity Framework? I also want to keep the data in the context. My data is like that:

At end of the operation the result I would like to see is that:
Please note, the table created as pivot should be editable..
Entity framework does not have any support for showing the data in pivot format.So the only way to do this is- Create a class with properties same as your resultset
Add the data from EF in List using LINQ query- private OrderEntities ctx = new OrderEntities();
This the way to show the list data in editable fields.
In order to edit, you can commit the changes in the list on a button click and commit changes back to EF.