I have another newbie LINQ question.
I have a dataset with two columns.
I want to use LINQ to filter the dataset to essentially get the distinct values of column B (ignoring column A). It sounds like group by is more efficient with distinct, so I would be okay with using group by.
Would someone be able to provide some sample code?
Thanks!!!
1 Answer