A little confused on
I think you need 2 "Distinct()" calls, one for the new { p2.subcategory } partmain categories and another for the subcategories.
Can
This should work for youtry:
var rootcategories mainCategories = (from p in sr.products
orderby p.category
products select p.category).Distinct();
var rootCategories =
from c in mainCategories
select new {
category = p.categoryc,
subcategories = (from p2 p in sr.products
products
where p2.category p.category == p.category
c
select p2.subcategory).Distinct(p.subcategory).Distinct()
});
And can you also give us some clue on what sr.products looks like?;
