Possible Duplicate:
How can i made a pivot for this
I have a table as provided below
ID | value | Name
--------+---------------+------------------
1 Digital Model
1 companyA Manufacturer
2 Analog Model
2 CompanyB Manufacturer
3 Fiber Model
3 CompanyC Manufacturer
I need to convert this back to
ID | Model | Manufacturer
--------+--------------+-------------------
1 Digital companyA
2 Analog CompanyB
3 Fiber CompanyC
Please help me with the Linq Query for this. Using T-SQL, I am able to convert it properly. However, with Linq I am finding problems writing Query.