我有一个 xml 模板,用于将值存储到数据库中(通过 Web 服务)。我已经看到了如何使用 linq 更新 xml 字符串的示例。例如...
<Contacts>
<Contact>
<FirstName>Petar</FirstName>
<LastName>Petrovic</LastName>
<Email>p.petar@someemail.com</Email>
<Address>Pere Perica 10</Address>
<ZipCode>1000</ZipCode>
<City>Belgrade</City>
<State>Serbia</State>
</Contact>
</Contacts>
如果这是您想要更新的 xml 文档,您只需做一些事情
XElement xmlDoc = new XElement("Contacts",
from c in db.Contacts
orderby c.ContactID
select new XElement("Contact",
new XElement("ContactID", c.ContactID),
new XElement("FirstName", c.FirstName),
new XElement("LastName", c.LastName)));
xmlDoc.Save(Server.MapPath(@"~/export.xml"));
这很酷。但我需要更新除属性外基本相同的节点。例如...
<?xml version="1.0" encoding="utf-8"?>
<dataTemplateSpecification id="id1" name="name1">
<description>
<html>text</html>
</description>
<templates>
<template>
<elements>
<element id="element0" name="PatientId" display="Patient ID" dataType="String" visable="true" readOnly="false">
</element>
<element id="element1" name="EMPIID" display="EMPI ID" dataType="String" visable="true" readOnly="true">
</element>
</elements>
<dataTypeSpecifications>
<dataTypeSpecification id="" baseType="KeyValuePair">
<dictionaryDefinition>
<item key="-1" value="-SELECT-" />
<item key="1" value="YES" />
<item key="0" value="NO" />
</dictionaryDefinition>
</dataTypeSpecification>
</dataTypeSpecifications>
你看,我有类似的节点,它们的属性不同,即名称属性......以及值属性......我将如何使用 linq 来更新它?我在想我会使用一种 xPath 类型的东西选择一个新的 Xelement,我会按名称选择元素,然后设置该值?但我对如何做到这一点有点困惑。有任何想法吗?