I have a datatable that holds data as such:
Date OperationA OperationB OperationC
Today 5
Today 6
Today 7
Now, I want this to look like:
Date OperationA OperationB OperationC
Today 5 6 7
I’ve had a look at the LINQ Group by clause, but that seems to seperate the data that is being grouped and doesn’t keep it within the collection – althought as a LINQ novice, I may be missing something.
Could somebody please advise.
Thanks.
P.S: You DB design looks weird. I think the table should look like this: