nested linq queries, how to get distinct values? - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T22:56:28Zhttp://stackoverflow.com/feeds/question/276166http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/276166/nested-linq-queries-how-to-get-distinct-values3nested linq queries, how to get distinct values?Alexander Taran2008-11-09T17:26:38Z2008-11-09T17:57:28Z
<p>table data of 2 columns "category" and "subcategory"</p>
<p>i want to get a collection of "category", [subcategories]
using code below i get duplicates. Puting .Distinct() after outer "from" does not help much. What do i miss?</p>
<pre><code> 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()
}).Distinct();
</code></pre>
<p>sr.products looks like this</p>
<pre><code>category subcategory
----------------------
cat1 subcat1
cat1 subcat2
cat2 subcat3
cat2 subcat3
</code></pre>
<p>what i get in results is </p>
<pre><code>cat1, [subcat1,subcat2]
cat1, [subcat1,subcat2]
</code></pre>
<p>but i only want one entry</p>
<p>solved my problem with this code:</p>
<pre><code> var rootcategories2 = (from p in sr.products
group p.subcategory by p.category into subcats
select subcats);
</code></pre>
<p>now maybe it is time to think of what was the right question.. (-:</p>
http://stackoverflow.com/questions/276166/nested-linq-queries-how-to-get-distinct-values/276171#2761711Answer by chakrit for nested linq queries, how to get distinct values?chakrit2008-11-09T17:33:49Z2008-11-09T17:54:21Z<p>I think you need 2 "Distinct()" calls, one for the main categories and another for the subcategories.</p>
<p>This should work for you:</p>
<pre><code>var mainCategories = (from p in products select p.category).Distinct();
var rootCategories =
from c in mainCategories
select new {
category = c,
subcategories = (from p in products
where p.category == c
select p.subcategory).Distinct()
};
</code></pre>
http://stackoverflow.com/questions/276166/nested-linq-queries-how-to-get-distinct-values/276191#2761911Answer by GeekyMonkey for nested linq queries, how to get distinct values?GeekyMonkey2008-11-09T17:48:56Z2008-11-09T17:48:56Z<p>Your main query is on Products, so you're going to get records for each product. Switch it around so you're querying on Category, but filtering on Product.Category</p>
http://stackoverflow.com/questions/276166/nested-linq-queries-how-to-get-distinct-values/276199#2761992Answer by quimbo for nested linq queries, how to get distinct values?quimbo2008-11-09T17:53:07Z2008-11-09T17:53:07Z<p>The algorithm behind Distinct() needs a way to tell if 2 objects in the source IEnumerable are equal.
The default method for that is to compare 2 objects by their reference and therefore its likely that no 2 objects are "equal" since you are creating them with the "new" keyword.</p>
<p>What you have to do is to write a custom class which implements IEnumerable and pass that to the Distinct() call.</p>
http://stackoverflow.com/questions/276166/nested-linq-queries-how-to-get-distinct-values/276202#2762022Answer by Alexander Taran for nested linq queries, how to get distinct values?Alexander Taran2008-11-09T17:54:55Z2008-11-09T17:54:55Z<p>solved with this code</p>
<pre><code> var rootcategories2 = (from p in sr.products
group p.subcategory by p.category into subcats
select subcats);
</code></pre>
<p>thanks everyone</p>