Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9154783
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T12:29:04+00:00 2026-06-17T12:29:04+00:00

All, I have the following class structure public class Foo : IComparable<Foo> { public

  • 0

All, I have the following class structure

public class Foo : IComparable<Foo> 
{
    public List<Bar> Bars;
}

public class Bar : IComparable<Bar> 
{
    public List<Con> Cons;
}

public class Con : IComparable<Con>
{
    ...
}

I know how to remove object from a list

authorsList.RemoveAll(x => x.FirstName == "Bob");

But how, for my class above, do I remove a List<Con> called badConList, from my base object Foo? Explicitly, the class hierarchy is populated like

Foo foo = new Foo();
foo.Bars = new List<Bar>() { /* Some Bar list */ };
foreach (Bar bar in foo.Bars)
    bar.Cons = new List<Con>() { /* Some Con list */ };

// Now a bad Con list.
List<Con> badCons = new List() { /* Some bad Con list */ };

How do I remove the badCons from foo for each Bar using LINQ?

Thanks for your time.

Ps. LINQ may not be the quickest method here; a simple loop might be (which is what LINQ will be doing under the hood anyway). Can you comment on this also?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T12:29:04+00:00Added an answer on June 17, 2026 at 12:29 pm

    You still can use RemoveAll:

    bar.Cons.RemoveAll(x => badCons.Contains(x));
    

    An alternate solution would be to use a loop:

    foreach(var badCon in badCons)
        bar.Cons.Remove(badCon);
    

    Both versions loop one of the lists multiple times:

    1. The first version loops badCons N times with N being bar.Cons.Count().
    2. The second version loops bar.Cons N times with N being badCons.Count().

    If one of the two lists is magnitudes larger than the other, it is a good idea to choose the version that loops the large list only once, otherwise use the version that is simpler to understand to you and the readers of your codebase.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following class structure: public abstract class Generic<T extends SuperClass> public class
Let's say I have the following class structure: class Car; class FooCar : public
All, I have a SQL Database class structure like public class Database : ISqlObject,
I have the following class structure: class TestCase { public IList<Step> Steps { get;
I have the following object structure. public class Study { public Guid? PreviousStudyVersionId {
Suppose I have the following class structure: public class State { public int Id
I have the following structure. public class ToolSettings { public string Extension { get;
I have the following structure: public class ThreadDocument { public ThreadDocument() { Messages =
I have the following entity structure: public class Party { public Int32 PartyId {
I have a list of objects with the following basic structure: class Person {

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.