Jak uzyskać LINQ to XML iqnore wszystkie przestrzenie nazw? Albo inaczej, jak usunąć przestrzenie nazw?
Pytam, ponieważ przestrzenie nazw są ustawiane w sposób półlosowy i mam dość szukania węzłów zarówno z przestrzenią nazw, jak i bez niej.
Jak uzyskać LINQ to XML iqnore wszystkie przestrzenie nazw? Albo inaczej, jak usunąć przestrzenie nazw?
Pytam, ponieważ przestrzenie nazw są ustawiane w sposób półlosowy i mam dość szukania węzłów zarówno z przestrzenią nazw, jak i bez niej.
Odpowiedzi:
Zamiast pisać:
nodes.Elements("Foo")
pisać:
nodes.Elements().Where(e => e.Name.LocalName == "Foo")
a kiedy się zmęczysz, stwórz własną metodę rozszerzenia:
public static IEnumerable<XElement> ElementsAnyNS<T>(this IEnumerable<T> source, string localName)
where T : XContainer
{
return source.Elements().Where(e => e.Name.LocalName == localName);
}
To samo dotyczy atrybutów, jeśli często masz do czynienia z atrybutami w przestrzeni nazw (co jest stosunkowo rzadkie).
W przypadku XPath zamiast pisać:
/foo/bar | /foo/ns:bar | /ns:foo/bar | /ns:foo/ns:bar
możesz użyć local-name()
funkcji:
/*[local-name() = 'foo']/*[local-name() = 'bar']
xDoc.Root.Descendants().Where(e => e.Name.LocalName == "SomeName");
Oto metoda usuwania przestrzeni nazw:
private static XElement StripNamespaces(XElement rootElement)
{
foreach (var element in rootElement.DescendantsAndSelf())
{
// update element name if a namespace is available
if (element.Name.Namespace != XNamespace.None)
{
element.Name = XNamespace.None.GetName(element.Name.LocalName);
}
// check if the element contains attributes with defined namespaces (ignore xml and empty namespaces)
bool hasDefinedNamespaces = element.Attributes().Any(attribute => attribute.IsNamespaceDeclaration ||
(attribute.Name.Namespace != XNamespace.None && attribute.Name.Namespace != XNamespace.Xml));
if (hasDefinedNamespaces)
{
// ignore attributes with a namespace declaration
// strip namespace from attributes with defined namespaces, ignore xml / empty namespaces
// xml namespace is ignored to retain the space preserve attribute
var attributes = element.Attributes()
.Where(attribute => !attribute.IsNamespaceDeclaration)
.Select(attribute =>
(attribute.Name.Namespace != XNamespace.None && attribute.Name.Namespace != XNamespace.Xml) ?
new XAttribute(XNamespace.None.GetName(attribute.Name.LocalName), attribute.Value) :
attribute
);
// replace with attributes result
element.ReplaceAttributes(attributes);
}
}
return rootElement;
}
Przykładowe użycie:
XNamespace ns = "http://schemas.domain.com/orders";
XElement xml =
new XElement(ns + "order",
new XElement(ns + "customer", "Foo", new XAttribute("hello", "world")),
new XElement("purchases",
new XElement(ns + "purchase", "Unicycle", new XAttribute("price", "100.00")),
new XElement("purchase", "Bicycle"),
new XElement(ns + "purchase", "Tricycle",
new XAttribute("price", "300.00"),
new XAttribute(XNamespace.Xml.GetName("space"), "preserve")
)
)
);
Console.WriteLine(xml.Element("customer") == null);
Console.WriteLine(xml);
StripNamespaces(xml);
Console.WriteLine(xml);
Console.WriteLine(xml.Element("customer").Attribute("hello").Value);
Ponieważ znalazłem to pytanie w poszukiwaniu łatwego sposobu ignorowania przestrzeni nazw w atrybutach, oto rozszerzenie do ignorowania przestrzeni nazw podczas uzyskiwania dostępu do atrybutu, w oparciu o odpowiedź Pawła (dla łatwiejszego kopiowania dołączyłem jego rozszerzenie):
public static XAttribute AttributeAnyNS<T>(this T source, string localName)
where T : XElement
{
return source.Attributes().SingleOrDefault(e => e.Name.LocalName == localName);
}
public static IEnumerable<XElement> ElementsAnyNS<T>(this IEnumerable<T> source, string localName)
where T : XContainer
{
return source.Elements().Where(e => e.Name.LocalName == localName);
}