如何使用linq2xml插入xml节点?
我知道如何阅读,但找不到如何编辑,我还想问如何插入?
我的 xml 文件看起来像:
<?xml version="1.0"?>
<dataWorkers>
<worker name="1" workshop="2" salary="25000"/>
<worker name="3" workshop="4" salary="25000"/>
</dataWorkers>
谢谢。
I know how to read, but can't find how to edit, also I want to ask how to insert ?
my xml file is looking like :
<?xml version="1.0"?>
<dataWorkers>
<worker name="1" workshop="2" salary="25000"/>
<worker name="3" workshop="4" salary="25000"/>
</dataWorkers>
thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
首先加载 xml 文档
然后使用 SetElementValue 并添加记录并最后保存它
SetElementValue 将创建元素(如果不存在),否则将更新现有元素
First Load the xml doc
Then use the SetElementValue and add the records and finally save it
SetElementValue will create the element if not present else would update the existing element
为了更好地理解,请查看 LINQ to XML - 5 分钟概述 和 了解 C#:简单的 LINQ to XML 示例(教程)
For better understanding check LINQ to XML - 5 Minute Overview and Understanding C#: Simple LINQ to XML examples (tutorial)
插入:
编辑:
Insert :
Edit: