gpt4 book ai didi

c# - 嵌套属性的 Linq

转载 作者:太空宇宙 更新时间:2023-11-03 23:24:51 25 4
gpt4 key购买 nike

下面是我的xml

<?xml version="1.0"?>
<Data xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<DataContainer xsi:type="ClassA">
<Identifier></Identifier>
<prop2></prop2>
<prop3></prop3>
<Key>549</Key>
</DataContainer>
<DataContainer xsi:type="ClassB">
<Identifier></Identifier>
<prop2></prop2>
<prop3></prop3>
<ClassC>
<ClassD>
<Identifier></Identifier>
<prop2></prop2>
<prop3></prop3>
<Key>461</Key>
</ClassD>
<ClassD>
<Identifier></Identifier>
<prop2></prop2>
<prop3></prop3>
<Key>468</Key>
</ClassD>
<ClassD>
<Identifier></Identifier>
<prop2></prop2>
<prop3></prop3>
<Key>460</Key>
</ClassD>
</ClassC>
<ClassE>
<ClassF>
<Identifier></Identifier>
<prop2></prop2>
<prop3></prop3>
<Key>549</Key>
</ClassF>
</ClassE>
</DataContainer>
..
..
..
.. Some more class that may or may not contain Key property
</Data>

我知道它复杂的 xml 结构,但就是这样,抱歉。我必须根据 Key 属性值获取 Identifier 属性的值,例如 Key=549 或其他。我知道我能做到

Data.OfType<ClassA>().where(h=>h.Key==someValue).Select(...

但是我是否必须为每个不同的类类型执行此操作,因为 Key 属性在不同的类中?除此之外,如果将来另一个类(class)进来,我必须找到基于那个类(class)的标识符,我是否必须添加另一个 linq 查询来找到那个标识符?有没有更好的解决方案,或者我对每个类类型的单独查询都感到困惑?

我已经有了“数据”反序列化对象,它看起来完全像并且基于上面的 xml & 我正在寻找一种方法来给我基于键的“标识符”属性值..

帮助将不胜感激,

最佳答案

您可以像这样使用 Linq-to-XML 轻松做到这一点:-

 XDocument xdoc = XDocument.Load("YourXML");
IEnumerable<string> Identifiers = xdoc.Root.Elements("DataContainer")
.Where(x => (string)x.Element("Key") == "549")
.Select(x => (string)x.Element("Identifier"));

关于c# - 嵌套属性的 Linq,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34185467/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com