web-dev-qa-db-ja.com

再帰的LINQクエリ:アイテムと子を持つすべての子を選択します

1つのクエリで項目とすべての子を選択できるLINQ(または手続き型)クエリを作成する方法はありますか?私はエンティティを持っています:

public class Comment
{
   public int Id {get;set;}
   public int ParentId {get;set;}
   public int Text {get;set;}
}

私はIDを持っているので、「ID付きのコメント」とそのすべての子に「子を持つ」を選択したいと思います。例:

1
-2
--3
-4
-5
--6
2
3

ID == 1の場合、1、2、3、4、5、6のリストが必要です。

12
user3219890
   public class Comment
    {
        public int Id { get; set; }
        public int ParentId { get; set; }
        public string Text { get; set; }        
        public List<Comment> Children { get; set; }
    }

    class Program
    {
        static void Main()
        {
        List<Comment> categories = new List<Comment>()
            {
                new Comment () { Id = 1, Text = "Item 1", ParentId = 0},
                new Comment() { Id = 2, Text = "Item 2", ParentId = 0 },
                new Comment() { Id = 3, Text = "Item 3", ParentId = 0 },
                new Comment() { Id = 4, Text = "Item 1.1", ParentId = 1 },
                new Comment() { Id = 5, Text = "Item 3.1", ParentId = 3 },
                new Comment() { Id = 6, Text = "Item 1.1.1", ParentId = 4 },
                new Comment() { Id = 7, Text = "Item 2.1", ParentId = 2 }
            };

            List<Comment> hierarchy = new List<Comment>();
            hierarchy = categories
                            .Where(c => c.ParentId == 0)
                            .Select(c => new Comment() { 
                                  Id = c.Id, 
                                  Text = c.Text, 
                                  ParentId = c.ParentId, 
                                  Children = GetChildren(categories, c.Id) })
                            .ToList();

            HieararchyWalk(hierarchy);

            Console.ReadLine();
        }

        public static List<Comment> GetChildren(List<Comment> comments, int parentId)
        {
            return comments
                    .Where(c => c.ParentId == parentId)
                    .Select(c => new Comment { 
                        Id = c.Id, 
                        Text = c.Text, 
                        ParentId = c.ParentId, 
                        Children = GetChildren(comments, c.Id) })
                    .ToList();
        }

        public static void HieararchyWalk(List<Comment> hierarchy)
        {
            if (hierarchy != null)
            {
                foreach (var item in hierarchy)
                {
                    Console.WriteLine(string.Format("{0} {1}", item.Id, item.Text));
                    HieararchyWalk(item.Children);
                }
            }
        }
18
Branimir
IEnumerable<Comment> GetChild(int id)
{
    return table.Where(x => x.ParentID == id || x.Id== id)
                .Union(table.Where(x => x.ParentID == id)
                            .SelectMany(y => GetChild(y.Id))
    );
}
9
user3219890

コメントクラスはグラフとして見ることができ、問題は グラフトラバーサルの問題 です。

Linqを使用して再帰的な問題を実際に定義することはできませんが、問題は単純な再帰的な方法で非常に簡単に解決できます。

4
Gimly