Linq-to-Sql: obtenha recursivamente filhos

Tenho uma tabela de comentários que possui um CommentID e um ParentCommentID. Estou tentando obter uma lista de todos os filhos do Comentário. É isso que eu tenho até agora, ainda não testei.

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 perguntas:

Existe alguma maneira óbvia de melhorar isso? (Além de talvez criar uma exibição em sql com um CTE.)Como é que eu não posso produzir umIEnumerable <Comment> para um IEnumerable<Comment>, sóComment em si? Existe alguma maneira de usar o SelectMany nessa situação?

questionAnswers(1)

yourAnswerToTheQuestion