gpt4 book ai didi

c# - 当 XElements 具有相同名称时如何使用 LINQ 查询获取 XElement 值

转载 作者:太空狗 更新时间:2023-10-29 18:17:24 26 4
gpt4 key购买 nike

我有一段类似下面的 xml:

<Table>
<Record>
<Field>Value1_1</Field>
<Field>Value1_2</Field>
</Record>
<Record>
<Field>Value2_1</Field>
<Field>Value2_2</Field>
</Record>
</Table>

我想要的是生成一个 IEnumerable 的 LINQ 查询,我可以将其指定为 DataGrid 的数据源。我到目前为止的情况如下:

var temp = from record in table.Elements("Record")
select record.Element("Field").Value

我可以有多个字段元素这一事实是我的绊脚石。

在上面的例子中,我需要的是类似 IEnumerable<string,string> 的东西.数据网格看起来像这样:

Value1_1, Value1_2
Value2_1, Value2_2

最佳答案

这样的事情会有帮助吗?

var a = from record in table.Elements("Record")
select new
{
one = (string)record.Elements().ElementAt(0),
two = (string)record.Elements().ElementAt(1)
};

关于c# - 当 XElements 具有相同名称时如何使用 LINQ 查询获取 XElement 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/890313/

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