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

learn more… | top users | synonyms (2)

1
vote
0answers
35 views

Violation of PRIMARY KEY constraint: Cannot insert duplicate key in object

When I want to persist a complex model, I get this error. I think I know where it comes from, but I don't know how to solve it. I'm importing a few feeds and create objects automatically, including ...
1
vote
0answers
12 views

XDocument.Save(string) not available

I'm using VS 2012 Express for Windows 8.I want to load an XML file, modify its content and then save it back to disk. Up to now, I've been using LINQ to XML and I've been able to load the file, ...
0
votes
1answer
7 views

is it important the order of the namespace in the root? is possible to order them?

I have the original xml that has the following struct: <Root xmlns="http://xyz.com/2006/root" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
0
votes
1answer
16 views

I set the namespace but I I don't get the correct xml

I have the following code: XNamespace xsiNs = XNamespace.Get("http://www.w3.org/2001/XMLSchema-instance"); XNamespace ns = XNamespace.Get("http://xyz.com/2006/"); XDocument ...
0
votes
1answer
25 views

why add xmlns=“” in the attribute of a node?

I am using C# and XDcoument to add nodes the root element. I use this code: XElement miAnimalNuevo = new XElement("PrincipalNode", new XAttribute("Atribute1", "value attribute 1"), ...
0
votes
1answer
19 views

Parsing string to XDocument

I'm making a WP app, and it loads an xml from a URL. So I download the content of the URL to a string using WebClient. The string returned is then parsed using XDocument.Parse() Thing is, when ...
4
votes
1answer
37 views

C# - Finding element attribute with XDocument

I'm trying to get the PurchaseDate from the following XML structure (a receipt from an in-app purchase in Windows Phone): <Receipt Version="1.0" CertificateId="..." ...
-2
votes
2answers
28 views

How to get handle to a specific XElement

Consider you have the following xml structure: <root> <File> a.txt <Version> 1.5 </Version> </File> <File> b.txt <Version> 1.0 ...
0
votes
2answers
25 views

How to iterate to the next sibling xml element?

Consider you have the following xml structure: <root> <File> a.txt <Version> 1.5 </Version> </File> <File> b.txt <Version> 1.0 ...
0
votes
3answers
35 views

Two xml declaration in single xml file error

My requirement is to create xml file and add xml elements to the existing xml file. First I tried creating new xml file by following code. using (XmlWriter xmlWriter = XmlWriter.Create(fStream, ...
0
votes
0answers
17 views

Data at the root level is invalid. Line 2, position 12

I am trying to create a .xml file in the IsolatedStorage and updating it but when I try to read the file I am getting the XMLException. Here is my code using (IsolatedStorageFile isoStore = ...
0
votes
2answers
41 views

How to generate an XML file dynamically using XDocument?

As I wrote in the subject itself , how can I do that? Note that solution like this are not appropriate as I want to create child nodes dynamically through running.. new XDocument( new ...
2
votes
1answer
37 views

Linq to XML remove duplicates from result

I've got a Linq to XML query here, but in the XML document that i'm querying there are a lot of duplicate element values being returned. This hasn't caused a problem so far as my code filters out ...
2
votes
2answers
54 views

How do I bind a ListBox to a list of objects from an XML file?

Hello I am trying to parse a simple xml file containing a list of usernames and then bind the results to a listbox The xml looks like this <friends type = Array> <userId> xxxx ...
0
votes
2answers
22 views

Copying part of an xml document to another document using Xdocument

I have an xml document which is roughly as follows <Gov> <Head> <address></address> <address></address> </Head> <Body> ...
1
vote
1answer
51 views

Extracting XML data, modifying it and storing in excel file

I am new to asp.net. I have an xml file as follows: <?xml version="1.0" encoding="iso-8859-1" ?> <newsitem itemid="10000" id="root" date="1996-08-22" xml:lang="en"> <title>CHINA: ...
0
votes
2answers
37 views

How do you sort an XDocument parent node based its child?

In c# I am trying to sort an XDocument using OrderByDesending. The goal is to read one of the child nodes which contains a date\time stamp and reorder the parent nodes. I load the XML from a saved ...
1
vote
1answer
21 views

Read XML document with LINQ TO XML

I have a little XML placed into a string, called myContent: <People xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Person ...
0
votes
1answer
19 views

Finding and Filtering XML Data

I have an XML document here: <?xml version="1.0" encoding="utf-8" ?> <CATALOG> <CD> <TITLE>Empire Burlesque</TITLE> <ARTIST>Bob Dylan</ARTIST> ...
0
votes
3answers
66 views

Select multiple elements with Linq to XML

I have a C# application and need to extract multiple elements from a Linq to XML collection. I have the following extract from an XML file <SNS> ...
0
votes
1answer
29 views

Linq to XML query not selecting the node

I have following xml and I am trying to find out AddreeLine from that - <?xml version="1.0" encoding="UTF-8" standalone="no"?><TravelItineraryReadRS ...
0
votes
2answers
39 views

C# XML Linq Pointing to/Reading Node

I can't seem to point and read the correct information. I'm new to using Linq and have tried (after loading the document as XDocument and XElement) select, root.xelement, descendant, element, node ...
2
votes
1answer
63 views

Finding Nodes Recursively in an XDocument

I figure I am overlooking something simple, but I am having difficulty extracting nodes from an XDocument recursively. I have XML similar to this: <?xml version="1.0" encoding="iso-8859-1"?> ...
0
votes
1answer
59 views

Reading XML file by name

I have an XML file in the following format. <ComponentStream component="Path" name="path" componentId="DV005120211_40"><Samples><PathFeedrate dataItemId="DV005120211_47" ...
0
votes
1answer
58 views

Random XML Exceptions - ' ', Hexadecimal value 0x1F, is an invalid character

I'm getting random errors when trying to load to an XDocument, complaining about invalid characters in my XML. ' ', hexadecimal value 0x1F, is an invalid character. Line 1, position 1. This happens ...
0
votes
2answers
44 views

Reading Data Sets from XML c#

I have a simple class I am designing to log messages on a hosted website. To store the messages, I have created this simple class structure: public class StoredMsg { public StoredMsg() { } ...
1
vote
2answers
40 views

Unable to save changes to xml file

As a learning exercise I'm building a simple Server IP storage and ping monitor application. The application reads a list of servers/hosts from the xml file and displays them to the user and allows ...
0
votes
0answers
37 views

Gets wrong output with nested XML Tags

This piece of code takes an XDocument I generate and save it as an XML file: static void Main(string[] args) { Dictionary<string, string> dic = new Dictionary<string, ...
0
votes
1answer
35 views

Creating efficient code for generating xml with xdocument

I am generating an XML file using Xdocument,however,the code I am producing is not efficient(too much new objects in my code). I was wondering if you could tell me what parts of my code need to be ...
0
votes
2answers
31 views

Turn a System.Collections.Generic.Dictionary into an XDocument

I am trying to make a Dictionary into an XDocument (XML) for easier parsing later in my application. The application will generate a Word Document based on the XDocument. My mate will send me a ...
0
votes
1answer
40 views

Linq XElement changes Value formatting in foreach

This seems like a strange one (unless I am missing something obvious). I have to store this string: {TestField1:=TestAltField1}{TestField2:=TestAltField2} in an XML Value field resulting in ...
1
vote
3answers
32 views

C# Linq to XML query only returning 1 result

I have the following method which queries an XML file. I need it to return the information on ALL files which have the "System" element matching the 'sys' variable which i pass into my method. It ...
0
votes
0answers
30 views

Loading XDocument Descendants into a .NET MVC 3 Model

I have a repository that attempts to load an XML document into a class. This all seems to go alright until I attempt to access the descendants elements in the map config section. This is the ...
0
votes
0answers
25 views

XDocument.Load not available in expression shape (orchestration) in BizTalk 2010

I need to load XDocument from within an expression shape in BizTalk 2010 orchestration. I can do it in C#, without any issues. XDocument xml = XDocument.Load(@"C:\Temp\Files\SampleFile.xml"); But ...
0
votes
1answer
31 views

How do I cast object to inherited class?

Say I have: Class Tiger: XElement { public Tiger(XElement t) :base(t) { } } And then I have an XDoucment named Tigers, how do I do things like: XElement t = ...
0
votes
1answer
33 views

Why does my query return spots for attributes, but not their values?

I am reading an xml file and running a query that looks for any entries where 'meetsMark' = 1, and then checks those entries 'SUMMARY' elements, for 'sum' and 'number' attributes. The code seems to be ...
0
votes
1answer
24 views

How do you place namespace alias on an XElement? How do you add a datasource to existing RDL document?

I am trying to create an XElement of a datasource to insert into an SSRS RDL file. However, I am unable to seem to get it to create correctly with respect to the rd: alias. Here is the code I am ...
0
votes
0answers
98 views

ListBox - Windows Store Application

I am not able to get a listbox to display the result, I could only using "nameInput.Text," I have no idea how to work within a foreach, can anyone help? C# Code: XDocument xdoc = ...
2
votes
0answers
86 views

Cannot convert string to DateTime within a LINQ expression [closed]

I am using a LINQ to XML expression to deserialize some XML data into a list of objects. My object is simply a collection fields: public class DataObject { private string Name { get; set; } private ...
2
votes
3answers
50 views

How To Create XPath for XML?

I have one Xml file in which i want to make filter based on XPath. I tried lot of examples none of them are helping No doubt I am doing some mistake. I am new in XPath please help me to find the ...
0
votes
1answer
37 views

How to find a list of Elemenets/Attributes from a specific Element in XML?

How can I query an xml document to return a list of sub-elements/attributes of a specific element. var entry = from item in doc.Descendants("GROUP") where ...
0
votes
2answers
77 views

TwoWay bind WPF ComboBox to XDocument

I have a ComboBox bound to a XDocument and it does not write back value changes: teams.xml <?xml version="1.0" encoding="utf-8" ?> <teams> <team> <name>Team ...
0
votes
1answer
18 views

Not able to load the child record properly from XML using XDocument

I have two entities as public class DbServer { public int ServerId { set; get; } public string Name { set; get; } public string Address { set; get; } public ...
0
votes
1answer
72 views

C# Populating treeview from my XML file, whilst filtering it for no repeats

I have the following XML file which gets populated programatically when documents are loaded into my program. What i want to be able to do is create a treeView hierachy using the "system", ...
0
votes
1answer
44 views

Linq to XML - how do I get this element value

Fairly simple one, but my knowledge is limited in this area. I'm using the following c# code to access the value of elements within my SGML and XML documents. It's working fine when there is only ...
0
votes
2answers
78 views

How to use System.XML.Linq to read simple XML document?

If I have added an XML document to a Visual Studio project, what code using System.XML.Linq will read data elements from this document?
-3
votes
0answers
36 views

Conditional Querying XML using linq [closed]

<TestResult> <TestProject Name="Project.Name1"> <TestClass> <TestMethod Name="verifyTestMethodName1"> <TestCaseId>32432</TestCaseId> ...
1
vote
1answer
51 views

Why does adding this new XElement try to change the structure of the XML document?

They say a man with one watch knows what time it is and a man with two is never sure. When it comes to the options using XML I seem to have a drawer full of them. For what it's worth I'm using .Net ...
0
votes
1answer
31 views

Concatenate an xml document

I have created an xml document.. below is my code. XDocument xDoc = new XDocument(); //SerializeToFile(getContentResponse, getContentResponse); for (int i = 0; i < ...
0
votes
2answers
81 views

How can C# look return an XML node with a specific element value?

A commercial application uses XML to hold a list of variables it uses. I do not have control over the format of the XML. I can use any version of .Net. Trying to write simpler code to assign a ...

1 2 3 4 5 59