Applying an XQuery file to an XMl File in C#
I am making a program that takes as input an XML file, XSD schema and an XQuery file.
So far I validate the XML against the XSD.
I now want to apply the XQuery file against the XML file, yet after looking online I can't seem to find any way of doing this in C#.
Would anyone know if this can be done? It see开发者_运维知识库ms there is no inbuilt support for XQuery C#?
Thanks for your time
Both Saxon and XQSharp are available commercially for .NET. If you want to call into C++, you could also use open source implementations like XQilla or Zorba.
精彩评论