如何查询列表的所有子对象以匹配实体?

时间:2013-08-21 20:32:37

标签: c# linq lambda

对于LINQ和lambda表达式,我有点新手,我希望有人可以帮助我。

我正在做的是从ADO.NET SqlDataReader创建一个聚合对象,并在响应中包含多个数据“表”。

记录集如下所示:


FooId
......其他描述性字段

酒吧
BarId
FooId
......其他描述性字段

巴兹
BazId
BarId
......其他描述性字段

我正在遍历每个数据表,一次一个。在我处理了第一张桌子之后,我拥有了所有的“Foos”,然后第二张是“Bars”,我可以毫无困难地将它与“Foo”联系起来。 (“Bar”可以分配给多个Foo)。

我正在补充的对象是一个List(为了通过Web服务返回它),对象看起来像这样(伪代码):

class Foo
{
  int FooId
  string Name
  string etc
  string YouGetTheIdea
  List<Bar> Bars
}

class Bar
{
  int BarId
  string etc
  List<Baz> Bazes
}

class Baz
{
  int BazId
  string etc
}
到目前为止,我很好。我遇到麻烦的地方是“Bar”对象有一个“Baz”对象列表,可以附加到多个“Bar”(后者可以连接到多个“Foo”)

到目前为止,我的代码看起来像这样。如果有更好的方法来解决这个问题,请告诉我。 我的麻烦是当我到达处理“Baz”的部分时,我不知道如何选择所有“Bar”对象(在任何有这个ID的Bar的Foo下)所以我可以添加当前BazId到它的Baz对象列表。我现在所拥有的东西在运行时爆炸,所以显然不对。

using (SafeDataReader reader = this.ExecSPReader(SP_NAME, parms.ToArray()))
{
    if (reader != null)
    {
        // deal with Foos
        while (reader.Read())
        {
            Foo o = new Foo();
            o.FooID = reader.GetInt64("FooID");
            o.Etc = reader.GetString("etc");
            //...more properties
            fooList.Add(o);
        }

        // deal with Bars
        reader.NextResult();
        while (reader.Read())
        {
            Bar p = new Bar();
            long BarFooID = reader.GetInt64("FooID");

            p.BarID = reader.GetInt64("BarID");
            //...more properties

            // find Foo that has this Bar and add to it
            Foo o = fooList.Find(x => x.FooID == barFooID);
            if (o != null)
            {
                if (o.Bars == null)
                {
                    o.Bars = new List<Bar>();
                }
                o.Bars.Add(p);
            }
        }
/*
***
***  Up to here, everything is fine
***  ...but now we need to assign the baz elements to bars, which can belong 
***     to any/all Foos
***
*/
        // deal with Bazs
        reader.NextResult();
        while (reader.Read())
        {
            long bazID = reader.GetInt64("BazID");
            long barID = reader.GetInt64("BarID");

            // here is the problem, ideally I'd like to get a list of all Bar elements with
            // the BarID from the datarow, but not sure how to do that -- the below foreach
            // line errors at runtime
            foreach(Bar p in fooList.Select(a => a.Bars.Where(b => b.BarID == barID)))
            {
                if (p.Bazes == null)
                {
                    p.Bazes = new List<Baz>();
                }
                p.Bazes.Add(bazID);
            }
        }
    }
}

非常感谢任何帮助。

1 个答案:

答案 0 :(得分:2)

使用SelectMany (MSDN)

foreach(Bar p in fooList.SelectMany(a => a.Bars.Where(b => b.BarID == barID)))
            {
                if (p.Bazes == null)
                {
                    p.Bazes = new List<Baz>();
                }
                p.Bazes.Add(bazID);
            }

更新为a.Bars可能为null;

foreach(Bar p in fooList.Where(a => a.Bars !=null).SelectMany(a => a.Bars.Where(b => b.BarID == barID)))
            {
                if (p.Bazes == null)
                {
                    p.Bazes = new List<Baz>();
                }
                p.Bazes.Add(bazID);
            }