简体   繁体   中英

Remove parents from list

I have 2 lists, both containing objects which look like this: (this is a simplification)

class ddItem
{
    public string Code;
    public string Key;
    public string ParentKey;
}

One list contains items which may or may not have children in the other list. I'm trying to figure out a nice way to remove items from the parent list if they have a corresponding item in the child list, ie where parent.Key = child.parentKey.

This is the LINQ I have, and it's currently causing me to lose brain cells:

parentList = 
    (List<ddItem>)parentList.Where(p => childList.Select(c => c.ParentKey == p.Key));

Currently I have a red squiggly line under childList.Select(c => c.ParentKey == p.Key) and the message Cannot convert expression type 'System.Collections.Generic.IEnumerable<bool>' to return type 'bool' so I must be missing a cast somewhere - I think...

[EDIT]

For posterity, the correct code is:

parentList = 
    parentList.Where(p => childList.Any(c => c.ParentKey == p.Key)).ToList();

(I also had to move the cast)

[/EDIT]

我认为您只需要从select更改为any where

parentList.Where(p => childtList.Any(c => c.ParentKey == p.Key))

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM