Tagged Questions

LINQ-to-XML provides a SQL-like query experience for navigating, parsing, and aggregating data stored in XML documents.

learn more… | top users | synonyms (1)

52
votes
4answers
14k views

Populate XDocument from String

I'm working on a little something and I am trying to figure out whether I can load an XDocument from a string. XDocument.Load() seems to take the string passed to it as a path to a physical XML file. ...
40
votes
6answers
12k views

Converting XDocument to XmlDocument and vice versa

It's a very simple problem that I have. I use XDocument to generate an XML file. I then want to return it as a XmlDocument class. And I have an XmlDocument variable which I need to convert back to ...
32
votes
3answers
25k views

C# Distinct on IEnumerable<T> with custom IEqualityComparer

Here's what I'm trying to do. I'm querying an XML file using LINQ to XML, which gives me an IEnumerable<T> object, where T is my "Village" class, filled with the results of this query. Some results ...
27
votes
4answers
5k views

XDocument.ToString() drops XML Encoding Tag

Is there any way to get the xml encoding in the toString() Function? Example: xml.Save("myfile.xml"); leads to <?xml version="1.0" encoding="utf-8"?> <Cooperations> ...
20
votes
5answers
44k views

LINQ to read XML

I got this XML file <root> <level1 name="A"> <level2 name="A1" /> <level2 name="A2" /> </level1> <level1 name="B"> <level2 ...
19
votes
2answers
25k views

How to select a specific node with LINQ-to-XML

I can select the first customer node and change its company name with the code below. But how do I select customer node where ID=2? XDocument xmldoc = new XDocument( new ...
18
votes
3answers
4k views

How to print <?xml version=“1.0”?> using XDocument

Is there any way to have an XDocument print the xml version when using the ToString method? Have it output something like this: <?xml version="1.0"?> <!DOCTYPE ELMResponse [ ]> ...
17
votes
2answers
3k views

How do you handle arbitrary namespaces when querying over Linq to XML?

I have a project where I am taking some particularly ugly "live" HTML and forcing it into a formal XML DOM with the HTML Agility Pack. What I would like to be able to do is then query over this with ...
13
votes
11answers
381 views

Using LINQ to create a List<T> where T : someClass<U>

This is related to a prior question of mine C# Generic List conversion to Class implementing List<T> I have the following code: public abstract class DataField { public string Name { get; ...
12
votes
5answers
534 views

Is there a way to serialize multiple XElements onto the same line?

I'm dealing with the dreaded <Run/> in Silverlight 3 and having to programmatically create a <TextBlock> and its inlines: Why dreaded? Because it doesn't work, I guess, the way you'd ...
12
votes
3answers
12k views

C# Linq to XML check if element exists

I have an XML document as follows: <Database> <SMS> <Number>"+447528349828"</Number> <Date>"09/06/24</Date> <Time>13:35:01"</Time> ...
11
votes
2answers
140 views

Merging of xml documents

All of the solutions I have come across regarding merging XML documents do not accomplish what I desire. Let me explain: XML Document 1: <?xml version="1.0" encoding="utf-8" ?> <a> ...
11
votes
4answers
1k views

How do you create an indented XML string from an XDocument in c#?

I have an XDocument object and the ToString() method returns XML without any indentation. How do I create a string from this containing indented XML? edit: I'm asking how to create an in memory ...
11
votes
1answer
4k views

How do I add multiple Namespace declarations to an XDocument?

I'm using an XDocument to build an Xml document in a known structure. The structure I am trying to build is as follows: <request xmlns:ns4="http://www.example.com/a" ...
11
votes
1answer
1k views

LINQ to XML - How does it work?

My question is essentially a simple one, though I'm looking for as in-depth an answer possible here: how does LINQ to XML work behind the scenes? Now, I have had a fair amount of experience working ...
11
votes
4answers
2k views

linq question: querying nested collections

I have a Question class that has public List property that can contain several Answers. I have a question repository which is responsible for reading the questions and its answers from an xml file. ...
10
votes
2answers
139 views

Linq To XML, yield and others

I was wondering if there's a .NET library or a 3rd party tool for executing Entity Framework like LINQ queries on XML Documents. I know there's already LINQ to XML which allows you to execute queries ...
10
votes
1answer
5k views

XDocument.Descendants() not returning any elements

I'm trying to bind a Silverlight DataGrid to the results of a WCF service call. I was not seeing the data displayed in the grid, so when I ran through the debugger, I notice that ...
10
votes
5answers
18k views

Linq to XML - update/alter the nodes of an XML Document

I've got 2 Questions: 1. I've sarted working around with Linq to XML and i'm wondering if it is possible to change an XML document via Linq. I mean, is there someting like XDocument xmlDoc = ...
9
votes
8answers
1k views

XDocument + IEnumerable is causing out of memory exception in System.Xml.Linq.dll

Basically I have a program which, when it starts loads a list of files (as FileInfo) and for each file in the list it loads a XML document (as XDocument). The program then reads data out of it into ...
9
votes
3answers
5k views

Children of XElement

How do I get just the children of an XElement? I am currently using the XElement.Descendants() function, which returns all levels of XElements, rather than jus the child nodes. What I would really ...
9
votes
7answers
751 views

Newbie LINQ Question: Is Paging in LINQ Queries Possible?

Is it possible to using "paging" functionality in Linq queries? Let's say I have some XML like this: <Root> <BetaSection> <Choices> <SetA> ...
9
votes
1answer
3k views

LinqToXML XElement to XmlNode

HI, Is there any 'correct' way to convert an XElement to an XmlNode in C# - LinqToXML makes it nice to build the required XML programmatically but SharePoint web services requires an XmlNode, so ...
8
votes
2answers
274 views

How do I extract info deep inside XML using C# and LINQ?

This is my first post on StackOverflow, so please bear with me. And I apologize upfront if my code example is a bit long. Using C# and LINQ, I'm trying to identify a series of third level id elements ...
8
votes
6answers
356 views

What is the best approach to generalize and aggregate XML dumps in C#?

Here is the business part of the issue: Several different companies send a XML dump of the information to be processed. The information sent by the companies are similar ... not exactly same. ...
8
votes
2answers
3k views

Use Linq to Xml with Xml namespaces

I have this code : /*string theXml = @"<Response xmlns=""http://myvalue.com""><Result xmlns:a=""http://schemas.datacontract.org/2004/07/My.Namespace"" ...
8
votes
2answers
3k views

Unexpected exception from XDocument constructor

This works fine: XDocument xdoc = new XDocument( new XDeclaration("1.1", "UTF-8", "yes"), new XProcessingInstruction("foo", "bar"), new XElement("test")); But if I ...
8
votes
4answers
5k views

Parsing HTML document: Regular expression or LINQ?

Trying to parse an HTML document and extract some elements (any links to text files). The current strategy is to load an HTML document into a string. Then find all instances of links to text files. ...
8
votes
3answers
3k views

Merge XML files in a XDocument

I am trying to merge several XML files in a single XDocument object. Merge does not exist in XDocument object. I miss this. Has anyone already implemented a Merge extension method for XDocument, or ...
8
votes
4answers
2k views

How do I do a deep copy of an element in LINQ to XML?

I want to make a deep copy of a LINQ to XML XElement. The reason I want to do this is there are some nodes in the document that I want to create modified copies of (in the same document). I don't ...
7
votes
3answers
54 views

Why is my XDocument saving the declaration when I don't want it to?

I have the following code: class Program { static void Main(string[] args) { using (var stream = File.Create(@"C:\test.xml")) { var xml = new ...
7
votes
3answers
67 views

Can't use Descendants() or Elements() with xmlns

I'm new to working with XML, and I've encountered a weird problem while trying to get a specific tag from a spring.net configuration file. After trying to narrow down the problem with a test xml file, ...
7
votes
2answers
286 views

why does the Xdocument give me a utf16 declaration?

i'm creating a XDocument like this: XDocument doc = new XDocument( new XDeclaration("1.0", "utf-8", "yes")); when i save the document like this (doc.Save(@"c:\tijd\file2.xml");) , i get this: ...
7
votes
3answers
243 views

Do I want an ORM?

We have an object model being used across three applications. Two programs collect data, another reads it and generates reports. The system is very disconnected, so we cannot have a single database ...
7
votes
2answers
678 views

What is the difference between Linq to XML Descendants and Elements

I have came across both these keywords in the VS IntelliSense. I tried to googling the difference between them and did not get a clear answer. Which one of these have the best performance with small ...
7
votes
2answers
6k views

The ':' character, hexadecimal value 0x3A, cannot be included in a name

I have an xml file that contains its element like <ab:test>Str</ab:test> When i am trying to access it using the code XElement tempElement = ...
7
votes
2answers
2k views

Understanding Linq To Xml - Descendants return no results

I'm a completly New to Linq2XML as I code to much lines to perform simple things, and in a simple project I wanted to give it a try... I'm with this for 2 hours and nothing I do get's it right :( ...
7
votes
4answers
2k views

parsing xml file with f# linq to xml

F# newbie I have 2 xml files in 2 folders c:\root\a\file.xml and c:\root\b\file.xml They have identical structure <parent> <property name="firstName">Jane</property> ...
7
votes
1answer
5k views

Convert XElement to string

I have a simple XElement object XElement xml = new XElement("XML", new XElement ("TOKEN",Session["Token"]), new XElement("ALL_INCLUSIVE", ...
7
votes
4answers
391 views

Is it just me? I find LINQ to XML to be sort of cumbersome, compared to XPath

I am a C# programmer, so I don't get to take advantage of the cool XML syntax in VB. Dim itemList1 = From item In rss.<rss>.<channel>.<item> _ Where ...
7
votes
5answers
3k views

Advantages of XSLT or Linq to XML

What advantages are there for using either XSLT or Linq to XML for HTML parsing in C#? This is under the assumption that the html has been cleaned so it is valid xhtml. These values will eventually ...
7
votes
3answers
4k views

Xdocument does not print declaration

I try to use the domainpeople.com API and to do I need to use XML. Currently I have an error saying "apiProtocol is not found" I guess then that my Xml document is malformed. The Current xml sent is ...
7
votes
3answers
1k views

Is there an easy way to compare if 2 XDocuments are equal ignoring element/attribute order?

Unit testing my serialization code I found one failed because I had attributes listed in a different order (I'm just comparing the XDocument.ToString() values) and while I could fix that, it really ...
7
votes
5answers
4k views

How do you guard for Null Reference exceptions in Linq To Xml?

<?xml version="1.0" encoding="utf-8" ?> <pages> <page id="56"> <img id="teaser" src="img/teaser_company.png"></img> </page> </pages> I have an ...
7
votes
1answer
1k views

Handling null references when using eg Linq-To-Xml

Is there a better/shorter way to handle (lots of) null references, for example when I'm using LinqToXML. I wrote this extention for XElement that handles it quite nicely, but maybe there is another ...
6
votes
1answer
440 views

Linq-to-XML XElement.Remove() leaves unwanted whitespace

I have an XDocument that I create from a byte array (received over tcp/ip). I then search for specific xml nodes (XElements) and after retrieving the value 'pop' it off of the Xdocument by calling ...
6
votes
3answers
446 views

XElement add prefix only

I have an XML file like: <myPrefix:Catalog xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" ...
6
votes
2answers
956 views

how to add XElement in specific location in XML Document

I want to create an XML documnet Like this: I want to create it from scratch using code and Linq 2 XML.in form Load Event I write this code: private void Form9_Load(object sender, EventArgs e) ...
6
votes
3answers
222 views

Modifying an XML via command line

I'm looking for a better way to patch an XML (actually, app.config file). More specifically, I need to add something to the <appConfig> section (which might not exist), as well as several ...
6
votes
3answers
4k views

How to use XPath with XElement or LINQ?

Consider the following XML: <response> <status_code>200</status_code> <status_txt>OK</status_txt> <data> <url>http://bit.ly/b47LVi</url> ...

1 2 3 4 5 32