vote up 1 vote down star

I'm using LINQ to SQL like:

var b =  
   from s in context.data  
   select new  
   {   
     id = s.id,  
     name = s.name  
     myEnumerable = s.OneToMany
   };

Where myEnumerable is of type IEnumberable<T> and I want to now get a subset of b based upon properties of the individual items of myEnumerable. For example, say <T> has properties Berry and BerryID, I would want to do something like:

b = 
   from p in b
   where //p.myEnumerable.myType.BerryID== 13
   select p;

I'm feel like I'm missing something easy...

flag

50% accept rate
Could you clarify your question? You want to filter the collection b again by the collection myEnumerable? What condition do you want to check? myEnumerable contains a item with BerryID == 13? All items must have BerryID == 13? – Daniel Brückner Sep 24 at 21:00

3 Answers

vote up 2 vote down check

Are you looking to select p if any of the items in p.myEnumerable have BerryID equal to 13?

b = from p in b
    where p.myEnumerable.Any(t => t.BerryID == 13)
    select p;

Or are you looking to select p if all of the items in p.myEnumerable have BerryID equal to 13?

b = from p in b
    where p.myEnumerable.All(t => t.BerryID == 13)
    select p;

What exactly is the condition you want the items in p.myEnumerable to fulfill before you select p?

link|flag
+1 good call with the Any/All..cleaner looking too than mine. – CSharpAtl Sep 24 at 21:47
vote up 1 vote down

Keep only items with at least one item having BerryID equal to 13 in the collection.

 var b = context.data
     .Where(s => s.OneToMany.Any(i => i.BerryID == 13))
     .Select(s => new { id = s.id, name = s.name, myEnumerable = s.OneToMany });

Keep only items with all item having BerryID equal to 13 in the collection.

 var b = context.data
     .Where(s => s.OneToMany.All(i => i.BerryID == 13))
     .Select(s => new { id = s.id, name = s.name, myEnumerable = s.OneToMany });
link|flag
vote up 1 vote down

Since myEnumerable is an IEnumerable you will have to do a where on that.

var filteredData = from p in listOfData
                               where p.InnerData.Where(b=>b.ID == 13).Count() > 0
                               select p;

If I understand what you are saying...this is if there is an ID = 13 in the Enumerable at all.

link|flag
1  
You can shorten Where(condition).Count() to Count(condition). Further Any(condition) is faster then Count(condition) > 0 because Any() can stop after the first positive match while Count() must always process the complete sequence. – Daniel Brückner Sep 24 at 21:11

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.