在进行复杂映射后,我将平面文件模式作为输出。
现在我想根据一个节点的值对平面文件模式的数据进行排序,因为我最终将该模式保存为csv。(按我的要求)
所以当我打开csv时,数据必须基于一个节点按字母顺序排序。
有办法吗?
我可以在将数据填充到模式时实现它,只是想知道是否有一种方法可以稍后对模式进行排序。
最好的方法是使用XSLT,这里是我为你做的一个小例子,你所要做的就是在每个语句中添加例如按标题排序,更多信息请访问http://www.w3schools.com/xsl/el_sort.asp
<?xml version="1.0" encoding="ISO-8859-1"?>
<catalog xmlns:foo="http://www.foo.org/" xmlns:bar="http://www.bar.org">
<foo:cd>
<title>Empire Burlesque</title>
<artist>Bob Dylan</artist>
<country>USA</country>
<company>Columbia</company>
<price>10.90</price>
<bar:year>1985</bar:year>
</foo:cd>
<foo:cd>
<title>Hide your heart</title>
<artist>Bonnie Tyler</artist>
<country>UK</country>
<company>CBS Records</company>
<price>9.90</price>
<bar:year>1988</bar:year>
</foo:cd>
<foo:cd>
<title>Greatest Hits</title>
<artist>Dolly Parton</artist>
<country>USA</country>
<company>RCA</company>
<price>9.90</price>
<bar:year>1982</bar:year>
</foo:cd>
</catalog>
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:foo="http://www.foo.org/" xmlns:bar="http://www.bar.org">
<xsl:template match="/">
<html>
<body>
<h2>My CD Collection</h2>
<table border="1">
<tr bgcolor="#9acd32">
<th>Title</th>
<th>Artist</th>
<th>Country</th>
<th>Company</th>
<th>Price</th>
<th>Year</th>
</tr>
<xsl:for-each select="catalog/foo:cd">
<xsl:sort select="title"/>
<tr>
<td><xsl:value-of select="title"/></td>
<td><xsl:value-of select="artist"/></td>
<td><xsl:value-of select="country"/></td>
<td><xsl:value-of select="company"/></td>
<td><xsl:value-of select="price"/></td>
<td><xsl:value-of select="bar:year"/></td>
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
非内置。您必须重新映射它(使用自定义XSLT)或将其加载到XDocument中,并在使用某种LINQ调用对其进行排序后将其保存在原始消息上。