我们有一家供应商公司要求xml数据文件具有特定的布局。该结构在XSD文件中定义,并且每月可以更新结构(元素可以重新排列或删除)(发送新的XSD文件)。
我有一个XML文件,但是,我需要按照与XSD要求相同的顺序排列元素。下面是我可以读取XML文件的代码。根据我的post here,我可以遍历XSD文件。
我的问题是我无法从xml文件返回特定元素。我怎样才能做到这一点?
foreach (var XSDsection in sections)
{
//Get Section Element;
string SchemaSchedule = XSDsection.Attribute("name").Value;
var SchemaSectionSchedule = XSDsection.Element(prefix + "complexType")
.Element(prefix + "sequence")
.Elements(prefix + "element");
foreach (var schemaSection in SchemaSectionSchedule)
{
//Get child element;
string schemaElement = schemaSection.Attribute("name").Value;
var XMLsectionSchedule = xDoc.Descendants(SchemaSchedule);
foreach (XElement element in xDoc.Element(SchemaSchedule).Descendants())
{
string value = element.Value; //returns value of next element;
string el = element.ToString(); //returns the next element and value from xml file;
}
}
}
答案 0 :(得分:0)
我不是最擅长XML的,但我认为你可能会做这样的事情:
foreach (var XSDsection in sections)
{
//Get Section Element;
string SchemaSchedule = XSDsection.Attribute("name").Value;
var SchemaSectionSchedule = XSDsection.Element(prefix + "complexType")
.Element(prefix + "sequence")
.Elements(prefix + "element");
foreach (var schemaSection in SchemaSectionSchedule)
{
//Get child element;
string schemaElement = schemaSection.Attribute("name").Value;
var XMLsectionSchedule = xDoc.Descendants(SchemaSchedule);
foreach (XElement element in xDoc.Element(SchemaSchedule).Descendants())
{
string value = element.Value; //returns value of next element;
string el = element.ToString(); //returns the next element and value from xml file;
if(value == myDesiredValue)
{
return element; // if you want the element, return it
}
}
}
}
请注意,这将返回仅匹配的第一个元素。一旦找到它,它将返回元素并停止循环。