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 132767
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T06:18:54+00:00 2026-05-11T06:18:54+00:00

I have a Comment table which has a CommentID and a ParentCommentID. I am

  • 0

I have a Comment table which has a CommentID and a ParentCommentID. I am trying to get a list of all children of the Comment. This is what I have so far, I haven’t tested it yet.

private List<int> searchedCommentIDs = new List<int>(); // searchedCommentIDs is a list of already yielded comments stored // so that malformed data does not result in an infinite loop. public IEnumerable<Comment> GetReplies(int commentID) {     var db = new DataClassesDataContext();     var replies = db.Comments         .Where(c => c.ParentCommentID == commentID              && !searchedCommentIDs.Contains(commentID));     foreach (Comment reply in replies) {         searchedCommentIDs.Add(CommentID);         yield return reply;         // yield return GetReplies(reply.CommentID)); // type mis-match.         foreach (Comment replyReply in GetReplies(reply.CommentID)) {             yield return replyReply;         }     } } 

2 questions:

  1. Is there any obvious way to improve this? (Besides maybe creating a view in sql with a CTE.)
  2. How come I can’t yield a IEnumerable <Comment> to an IEnumerable <Comment>, only Comment itself?
  3. Is there anyway to use SelectMany in this situation?
  • 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. 2026-05-11T06:18:54+00:00Added an answer on May 11, 2026 at 6:18 am

    I’d probably use either a UDF/CTE, or (for very deep structures) a stored procedure that does the same manually.

    Note that if you can change the schema, you can pre-index such recursive structures into an indexed/ranged tree that lets you do a single BETWEEN query – but the maintenance of the tree is expensive (i.e. query becomes cheap, but insert/update/delete become expensive, or you need a delayed scheduled task).


    Re 2 – you can only yield the type specified in the enumeration (the T in IEnumerable<T> / IEnumerator<T>).

    You could yield an IEnumerable<Comment> if the method returned IEnumerable<IEnumerable<Comment>> – does that make sense?

    Improvements:

    • perhaps a udf (to keep composability, rather than a stored procedure) that uses the CTE recursion approach
    • use using, since DataContext is IDisposable…

    so:

    using(var db = new MyDataContext() ) { /* existing code */ } 
    • LoadWith is worth a try, but I’m not sure I’d be hopeful…
    • the list of searched ids is risky as a field – I guess you’re OK as long as you don’t call it twice… personally, I’d use an argument on a private backing method… (i.e. pass the list between recursive calls, but not on the public API)
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 85k
  • Answers 85k
  • 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 SQL is about set theory, or more correctly, relational algebra.… May 11, 2026 at 5:11 pm
  • Editorial Team
    Editorial Team added an answer Preemptive multitasking - Running several processes/threads on a single processor,… May 11, 2026 at 5:11 pm
  • Editorial Team
    Editorial Team added an answer I would also suggest to use a MinGW variant. I… May 11, 2026 at 5:11 pm

Related Questions

I have asked a similar question before and while the answers I got were
I want to list the recent activities of a user on my site without
We are in the process of porting a legacy system to .NET, both to
I have a migration that runs an SQL script to create a new Postgres

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.