简体   繁体   English

LINQ中的递归/分层查询

[英]Recursive/Hierarchical Query in LINQ

Scenario is, 情景是,

im using EntityFrame Work 6. I have a DB have table having structure below. 即时通讯使用EntityFrame工作6.我有一个DB有表结构如下。

cat_id     geo_id     parent_id geo_name
   Root       1       NULL      Pakistan
   Province   2        1        Punjab
   District   3        2        Attock
   City       4        3        Attock
   City       5        3        Fateh Jang
   City       6        3        Hasan Abdal

Table have hierarchical data in relational form,as you can see. 正如您所见,表具有关系形式的分层数据。

I want to traverse this hierarchy, want to specific parent level, If im at geo_id 6 then I want to go parent_id 3 and get value Attock or want to go to parent_id 2 and want to get value Punjab . 我想遍历这个层次结构,想要特定的父级别,如果我在geo_id 6然后我想去parent_id 3并获得值Attock或者想要去parent_id 2并且想获得价值Punjab

Moral of the story is,standing at any child,want traverse till specified parent or grand parent,not entire hierarchy. 这个故事的道德是,站在任何一个孩子身上,想要遍历指定的父母或祖父,而不是整个等级。 Below is code I have tried but it gives me only its immediate parent. 下面是我尝试过的代码,但它只给了我直接的父母。

More Shortly, Want a LINQ query,which will return name of specified parent or grand parent,For Example. 更简要的是,想要一个LINQ查询,它将返回指定的父或祖父的名称,例如。 I can ask my query, "hey! im Hasan Abdal(City) ,tell me my Province " 我可以问我的查询,“哎!IM Hasan Abdal(City) ,告诉我,我的Province

Province = (from cp in db.geo_hierarchy
                                                     join mp in db.geo_hierarchy on cp.parent_id equals mp.geo_id
                                                     where cp.geo_name == risk.geo_hierarchy.geo_name 
                                                     select mp.geo_name).FirstOrDefault()

see full code below,it used in inside LINQ query's select clause 请参阅下面的完整代码,它在LINQ查询的select子句中使用

 Risklists = (from risk in db.risk_cat_detail
            where risk.occurance_date.Value.Year==2014 && risk.occurance_date.Value.Month>=6 && risk.occurance_date.Value.Month<=9
                                 select new risk_cat_detail_contract()
                                 {
                                     cat_id = risk.cat_id,
                                     catdesc = risk.category_main.cat_name,
                                     risk_cat_detail_id = risk.risk_cat_detail_id,
                                     trans_date = risk.trans_date.Value,
                                     occurance_date = risk.occurance_date.Value,
                                     occurance_time = risk.occurance_time,

                                     geo_id = risk.geo_id,
                                     geo_desc = risk.geo_hierarchy.geo_name,
                                     Province = (from cp in db.geo_hierarchy
                                                 join mp in db.geo_hierarchy on cp.parent_id equals mp.geo_id
                                                 where cp.geo_name == risk.geo_hierarchy.geo_name 
                                                 select mp.geo_name).FirstOrDefault()







                                 }).ToList<risk_cat_detail_contract>();

Help me out,Thanks in Advance 帮帮我,谢谢你

Try this: 尝试这个:

var geo_hierarchy = new []
{
    new { cat_id = "Root", geo_id = 1, parent_id = (int?)null, geo_name = "Pakistan", },
    new { cat_id = "Province", geo_id = 2, parent_id = (int?)1, geo_name = "Punjab", },
    new { cat_id = "District", geo_id = 3, parent_id = (int?)2, geo_name = "Attock", },
    new { cat_id = "City", geo_id = 4, parent_id = (int?)3, geo_name = "Attock", },
    new { cat_id = "City", geo_id = 5, parent_id = (int?)3, geo_name = "Fateh Jang", },
    new { cat_id = "City", geo_id = 6, parent_id = (int?)3, geo_name = "Hasan Abdal", },
};

var map = geo_hierarchy.ToDictionary(x => x.geo_id);

Func<int, string, string> up = null;
up = (geo_id, cat_id) =>
{
    var record = map[geo_id];
    return
        record.cat_id == cat_id
            ? record.geo_name
            : (record.parent_id.HasValue
                ? up(record.parent_id.Value, cat_id)
                : null);
};

var result = up(5, "Province"); // -> "Punjab"

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM