In ASP.NET C# I have a struct:
public struct Data
{
public int item1;
public int item2;
public int category_id;
public string category_name;
}
and I have a List of those. I want to select category_id and category_name, running a DISTINCT and finally an ORDERBY on category_name.
Here's what I have now:
List<Data> listObject = getData();
string[] catNames = listObject.Select(i=> i.category_name).Distinct().OrderByDescending(s => s).ToArray();
This obviously just gets the category name. My question is, how do I get multiple fields, and what data structure will I store this in (not a string[])?
EDIT
Using a list of structs is not set in stone. If it would be advisable to change my backing data structure to make selects easier (I'll be writing a lot of these) then I'd gladly take recommendations.