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

Related Questions

I have a table called BlogPost which has a 1-to-many relationship with the Comment
I have this mysql table called comments which looks like this: commentID parentID type
I have a page that is generated which inserts an HTML comment near the
In my database (SQL 2005) I have a field which holds a comment but
I am having comment reply (only till one level) functionality. All comments can have
My table is comment_likedislike. It has the comment_counterid, comment_counter, comment_id(which is from another table)
I have a task tracking application, which is very basic. It currently has a
I have found this example on StackOverflow: var people = new List<Person> { new
Let's say I have two tables: Report Comment And assuming I have a database
I have one table that saves comments for a varied set of content types.

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.