show/hide this revision's text 2 deleted 223 characters in body

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?;

show/hide this revision's text 1

A little confused on the new { p2.subcategory } part.

Can you try:

 var rootcategories = (from p in sr.products
                              orderby p.category
                              select new
                              {
                                  category = p.category,
                                  subcategories = (
                                  from p2 in sr.products
                                  where p2.category == p.category
                                  select p2.subcategory).Distinct()
                              });

And can you also give us some clue on what sr.products looks like?