gpt4 book ai didi

c# - 如何使用 Linq to Xml 获取单个 XElement 对象?

转载 作者:行者123 更新时间:2023-11-30 14:21:07 25 4
gpt4 key购买 nike

我想使用 Linq to Xml 通过属性名称从 .xml 文件中获取单个 XElement,类似于您在 Linq to Sql 中通过下面的 Id 检索单个对象的方式:

var singleDog = context.Dogs.Single(p => p.Id == int.Parse(Id));

这可能吗?

最佳答案

当然。只需使用类似的东西:

xdoc.Descendants()
.Where(x => x.HasAttribute("id") && x.Attribute("id")==id)
.Single();

诚然,可能有更有效的方法...

关于c# - 如何使用 Linq to Xml 获取单个 XElement 对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/164192/

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