我有代码从一些内置库中获取数据
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);
}
但是我想要在道具中查询并获得所需的值,而不是循环每个记录,这些是我在道具集合中的属性。
请帮我查询此系列。
由于 迪利普
答案 0 :(得分:1)
DBValue = lpropertycollection.GetProperties().OfType<PwItem>().Where(t => t.Name == row["Name"] + DBColName).FirstOrDefault().Value.ToString();