I have a List structure in which there are 4 columns.
id no customerid price
1 100 201 100
2 101 202 150
1 100 201 120
I'm interested in getting another list just to have only unique records:
id nr customerid
1 100 201
2 101 202
How to get that result as efficiently as possible? Thank you!
id no customerid price
1 100 201 100
2 101 202 150
1 100 201 120
I'm interested in getting another list just to have only unique records:
id nr customerid
1 100 201
2 101 202
How to get that result as efficiently as possible? Thank you!