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

  • Home
  • SEARCH
  • 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 192905
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T16:27:55+00:00 2026-05-11T16:27:55+00:00

Given a class: class Control { public Control Parent { get; set; } public

  • 0

Given a class:

class Control
{
    public Control Parent { get; set; }
    public List<Control> Children { get; set; }
}

and a list:

List<Control> myControls;

Is it possible to write a linq query that will select all children & grandchildren for a given control? For example if a tree looks like this:

GridA1
  PanelA1
    TextBoxA1
    TextBoxA2
    PanelA2
      ListBoxA1
      ListBoxA2
GridB1
  PanelB1
    TextBoxB1

I’d like a query that, given list myControls that contains all above controls with Parent and Children properties set as approriate can be parameterized with PanelA1 and return TextBoxA1, TextBoxA2, PanelA2, ListBoxA1 and ListBoxA2. Is there an efficient way to do this with linq? I’m selecting a tree structure out of a database and looking for a better way to pull apart subtrees than a recursive function.

  • 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-05-11T16:27:55+00:00Added an answer on May 11, 2026 at 4:27 pm

    It’s hard to do this in a tremendously pretty way with LINQ, since lambda expressions can’t be self-recursive before they’re defined. A recursive function (perhaps using LINQ) is your best bet.

    How I’d implement it:

    public IEnumerable<Control> ChildrenOf(this IEnumerable<Control> controls)
    {
        return controls.SelectMany(c =>
            new Control[] { c }.Concat(ChildrenOf(c.Children)));
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 205k
  • Answers 205k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Create a symmetric key and encrypt/decrypt something with it. Modify… May 12, 2026 at 9:00 pm
  • Editorial Team
    Editorial Team added an answer It seems like you just forgot to insert the colon… May 12, 2026 at 9:00 pm
  • Editorial Team
    Editorial Team added an answer Sleep() is implemented at the OS level. The processor doesn't… May 12, 2026 at 9:00 pm

Related Questions

Ok, so having given up on getting the built in .NET configuration system to
Part of me thinks that this shouldn't be possible (even if it is), but
I saw a couple of similar questions here, but what I'm trying to do
Item is a simple model class. ItemComponent is a view for an Item which

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.