Hi, I have a list of data structured like this:
Field1 Field2 Field3
1 1 "abc"
1 1 "def"
1 2 "123"
1 2 "456"
I want to be able to merge this data so I end up with a single record per Field1 & Field2 and with the Field3 data concatenated. So in the above case I would get:
Field1 Field2 Field3
1 1 "abcdef"
1 2 "123456"
I would like to use linq/query expressions for this.