查询集合对象

时间:2017-03-28 05:23:21

标签: c# linq

我有代码从一些内置库中获取数据

PwCollection Props = PwSrv.GetItem(row["Name"].ToString()).GetProperties();//.AsQueryable();
                                                    foreach (PwItem Prop in Props)
                                                    {
                                                        Console.WriteLine(Prop.Name);
                                                        Console.WriteLine(Prop.Description);
                                                        Console.WriteLine(Prop.Value);
                                                    }

但是我想要在道具中查询并获得所需的值,而不是循环每个记录,这些是我在道具集合中的属性。

enter image description here

请帮我查询此系列。

由于 迪利普

1 个答案:

答案 0 :(得分:1)

谢谢你的时间,我能够解决它

DBValue = lpropertycollection.GetProperties().OfType<PwItem>().Where(t => t.Name == row["Name"] + DBColName).FirstOrDefault().Value.ToString();