我想根据我的要求插入迭代元素(Signal),如下面的xml输出。
<?xml version="1.0" encoding="UTF-8"?>
<WIUConfig xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Timestamp>2006-05-04T18:13:51.0Z</Timestamp>
<WIUAddress>WIUAddress0</WIUAddress>
<WIUName>WIUName0</WIUName>
<BeaconFlag>Y</BeaconFlag>
<EncryptedHMACkey>30</EncryptedHMACkey>
<DeviceStatusConfigVersion>DeviceStatusConfigVersion0</DeviceStatusConfigVersion>
<Signal>
<SiteDeviceId>SiteDeviceId0</SiteDeviceId>
<SiteName>SiteName0</SiteName>
<TrackName>TrackName0</TrackName>
</Signal>
<Signal>
<SiteDeviceId>SiteDeviceId1</SiteDeviceId>
<SiteName>SiteName1</SiteName>
<TrackName>TrackName1</TrackName>
</Signal>
<Signal>
.
.
.
</Signal>
</WIUConfig>
如何使用C#.net LINQ to XML
实现这个迭代概念这是我的代码:
XDocument xdco = new XDocument(
new XDeclaration("1.0", "utf-8", "Yes"),
new XComment("WIU Configurations"),
new XElement("WIUConfig",
new XElement("Timestamp", datetime),
new XElement("WIUAddress", ds.Tables[0].Rows[0][0].ToString()),
new XElement("WIUName", ds.Tables[0].Rows[0][1].ToString()),
new XElement("BeaconFlag", "Y"),
new XElement("EncryptedHMACkey", ds1.Tables[0].Rows[0][0].ToString()),
new XElement("DeviceStatusConfigSCAC", ds.Tables[0].Rows[0][0].ToString()),
new XElement("DeviceStatusConfigTableId", ds.Tables[0].Rows[0][0].ToString()),
new XElement("DeviceStatusConfigVersion", ds.Tables[0].Rows[0][0].ToString()),
**????????(iteration code) **
));
xdco.Save(OutPath);
从上面的代码如何用XML文件插入iterate元素?
答案 0 :(得分:1)
你没有在信号数据方面展示你所拥有的东西,但是你应该可以在你最后的new XElement
行之后直接做这样的事情:
signals.Select(signal => new XElement("Signal",
new XElement("SiteDeviceId", signal.SiteDeviceId),
new XElement("SiteName", signal.SiteName),
new XElement("TrackName", signal.TrackName)
))
LINQ to XML非常聪明,可以对可以迭代的参数进行递归。这是它与LINQ其余部分很好地集成的方式之一。
编辑:根据您的评论判断,您已经拥有数据但是在DataTable中。您仍然可以使用DataTable.AsEnumerable().Select(row => ...)
应用相同的方法,但我个人强烈考虑首先将其转换为强类型集合,以保持代码简单和可维护。
答案 1 :(得分:0)
您可以从中创建“业务对象”的中间集合,然后使用DataContractSerializer对其进行序列化。