CommentID と ParentCommentID を持つ Comment テーブルがあります。コメントのすべての子のリストを取得しようとしています。これは私がこれまでに持っているもので、まだテストしていません。
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 つの質問:
- これを改善する明白な方法はありますか?(CTEを使用してSQLでビューを作成することに加えて。)
IEnumerable <Comment>
aを IEnumerable<Comment>
に譲ることができないのはComment
なぜですか?- この状況で SelectMany を使用する方法はありますか?