If I have table with a structure like that :
serial regnum value type
1 55 100 normal
2 55 66 Light
3 77 70 normal
4 30 40 Light
Now if i want to get the data concerning the regnum = 55
in one record not two with the following structure :
regnum normal light
55 100 66
How to do this through sql query or through LINQ ?