2
votes
2answers
61 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
1answer
28 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, ...
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 ...
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
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 ...
0
votes
1answer
34 views

Reading XML attribute value based on another attribute

I am trying to retrevie a error message based on the errorcode i pass.How can i do that using linq? Here is my xml document layout <?xml version="1.0" encoding="utf-8" ?> <errors> ...
0
votes
1answer
57 views

LINQ C#: Get the Distinct TAG NAMES (Not Values) that's common across all child XML elements

<root> <abc:Description abc:about="XXX.XXX_CSData-2"> <xxx:Data.Curve abc:resource="XXX.XXX"/> <xxx:Data.y2AData ...
1
vote
2answers
48 views

LINQ to XML type declaration

If we're using C# (LINQ to XML) to loop through nodes contained in a small (< 100kb) XDocument object is it a better practice or better performance-wise to use XElement or the standard implicit ...
0
votes
1answer
46 views

linq to xml - get childrem of those nodes with a certain attribute

I have the following XML structure: <partners> <partner partner="xxxxxx" Id="12345"> <email>aa@aa.com</email> <email>bb@bb.com</email> </partner> ...
0
votes
1answer
23 views

Selecting a XML node with LINQ, and modifying

I've got the following XML: <Config> <Book> <Name> Book Name #1 </Name> <Available In> <Country>US</Country> ...
2
votes
7answers
83 views

read xml attributes

i'm confused... nothing is on my mind anymore... i need to read each attribute from this kind of xmldocument <party_list> <party currency="BAM" id="330-159210014235851" /> <party ...
0
votes
1answer
36 views

Remove and return xml blocks from same LINQ query

I have the following xml <Books> <Book> <Name>Let Us C</Name> <Price>250</Price> <ID>234</ID> </Book> ...
0
votes
1answer
40 views

Is it possible to get populate class object from xml?

I have an xml file like this: <CommissionTypes> <Type>CPA</Type> <Lender> <Seq>001</Seq> ...
2
votes
6answers
163 views

Linq if/else condition?

I know this will probably be a newbie question. Is there a way to choose different search criteria depending on the bool value? Later in the code, I want to loop through the object ...
1
vote
1answer
167 views

c# linq to xml XElement group by ancestor attribute to create list of entities collection with key

I have below xml. <?xml version="1.0" encoding="utf-8" ?> <MESSAGE ID="PND"> <STORE ID="6697"> <HEADER ID ="1" LOADCLOSEDDATETIME="20130312121212" ...
0
votes
1answer
35 views

Parsing xdocument and binding to grid

I am having tought time to bind a xdocument data to a gridview. I need help on this thought I tried various ways to do the same but all in vain..... Below is the xml string . <sparql ...
0
votes
1answer
30 views

complex Xpath into Linq to XML

My input XML: .... <node Attribute1 = "GUID1"> <childnode1 AttributeChildnode= var1> </childnode> <childnode2 AttributeChildnode= var2> </childnode> ...
0
votes
2answers
38 views

LINQ to XML selecting next node Elements

I am working on selecting some specfic data from an XML document. Here is a sample of the xml document: <data> <variable name="somedata"> <row> ...
0
votes
1answer
59 views

How to set page navigation with data from listbox?

Hi am using xaml file given below.I have list from list-box with item source. I want page navigation with selected data to other page. <ListBox x:Name="NotchsList11" Grid.ColumnSpan="2" ...
1
vote
2answers
40 views

Error while loading XML file using LINQ & Change the XML file after loading

I have a xml file as follows. Filename:myapp.connfig <configuration> <appSettings> <add key="Key1" value="false" /> <add key="Key2" value="5893893"/> <add ...
0
votes
4answers
65 views

Parse XElement - get element

I currently have an XElement. I use this to print it: System.Diagnostics.Debug.WriteLine(hostedServices); Result: <HostedServices xmlns="http://schemas.microsoft.com/windowsazure" ...
0
votes
0answers
78 views

Access parent scope in nested ListBox - to provide selected item data for page Navigation?

I am using xaml file given below, I have a top-level listbox and each item again has its own listbox. I am tracking the selection changes for the inner list and in that case my data context is ...
1
vote
3answers
66 views

Declare two objects into one list?

What I have in place is working fine. I'm curious if there is a better way to accomplish this via Linq. Currently I'm declaring an ArrayList, filling that then running through that later. Can I run a ...
0
votes
1answer
59 views

How to use linq to find a sub element in a list / IEnumerable?

I have an XML structure that I parse and return as an IEnumerable: <menuItem Id="1"> <menuItem Id="2"> <menuItem Id="5"> <menuItem Id="9"> ...
0
votes
2answers
113 views

Why the same LINQ expression behaves differently in two different foreach loops?

I have following XML. <Parts> <Part name="Part1" disabled="true"></Part> <Part name="Part2" disabled="false"></Part> <Part name="Part3" ></Part> ...
0
votes
1answer
41 views

Retrieve from a particular level in xml tree

I have the decision tree structure as such like the below , <?xml version="1.0" encoding="utf-8" ?> <root> outlook <item> sunny <root> humidity ...
0
votes
2answers
45 views

Select returning only one element

Maybe I'm tired but I'm not seeing why this is only returning one result. There are three Program elements under Programs but I'm only getting Excel as the result. What am I missing and why? XML: ...
0
votes
2answers
64 views

Linq to xml Select statement

I'm trying to figure out how to do a select statement using linq to xml. I'd like to return the ServerTypes if the DeploymentType equals a specific value (Enterprise9999). XML: <Deployments> ...
0
votes
2answers
114 views

If statement in LINQ (If no value do something…)

I'm trying to make an application which shows the bushours including bus numbers, Aimed hour and Expected hour. I get my (live) information from a HttpWebRequest. My response from the request is ...
1
vote
2answers
81 views

issue removing a XDocument node based on its attribute

I'm trying to remove a CreditCard node in a XDocument called doc based on its name attribute but its not working as intended. doc is my XDocument and it looks like this: XDocument doc = new ...
0
votes
1answer
35 views

XMLResponse element show in list

I'm doing a HttpWebrequest by using c#. I get the following response <?xml version="1.0" encoding="UTF-8" standalone="yes"?> <Siri version="1.0" xmlns="http://www.siri.org.uk/"> ...
0
votes
1answer
45 views

I'm having trouble querying an XDocument using LINQ

I'm new to LINQ so I gather I just have some of my syntax wrong. I've looked at many examples online but everyone seems to have their own style. Here's the XML data I'm querying against: ...
0
votes
1answer
70 views

LINQ Search attributes on different levels

I would like to search xml file with LINQ technology but have some difficulties. I would like to find all childs with attribute value and some search condition My XML (structured data) looks like ...
1
vote
2answers
109 views

How to bind dynamic multi listing data from xml file in windows phone 7?

Hi am using xml file given below,I tried many code to get multi listing from xml file but i cant get. <?xml version="1.0" encoding="utf-8" ?> <root> <Categories> ...
0
votes
2answers
40 views

Selecting element based on other element values

I have referred XPathSelectElement select the second when there is more than one and XPath and XPathSelectElement. But this is a different question. I have following xml. I need to find out the ...
1
vote
2answers
50 views

XML get specific name [duplicate]

I have this example of an XML <work> <worker name="Jason" job="admin"> <worker name="Frank" job="employee"> <worker name="John" job="admin"> <work> I'm trying to ...
0
votes
3answers
90 views

How do I use LINQ to XML to create a list of objects?

I have some inbound XML that I am trying to read with LINQ to generate a list of objects: <SCResponse> <link ...
-2
votes
2answers
100 views

Linq to XML - Fetching value based on condition

I have an XML as below : <Nodes> <Node> <A>This is a dummy text {12345}</A> <B>Output Value</B> </Node> <Node> <A>This is ...
0
votes
2answers
54 views

XDocument to Dictionary

This is my Xdocument: <Response> <city> <CityName>xxx</CityName> <CityId>1</CityId> </city> <city> ...
1
vote
1answer
43 views

Select Node Type From XML document

Hi i have a scenario where i want to search the node in xml file and identify the type of file. XDocument xDococumnetObj = XDocument.Load(filePath); XElement presentationElement= ...
1
vote
2answers
43 views

Select XML element based on value of sibling

Using Linq to XML and the example XML document below, how would I get the value of "itemType" where the "itemColor" is blue? <?xml version="1.0" encoding="utf-8" ?> <items> ...
1
vote
2answers
307 views

System.Xml.XmlException: Unexpected end of file while parsing Name has occurred

I'm using an XmlReader retrieved using SqlCommand.ExecuteXmlReader. Here is my input When I run this line of code: XDocument currentXDoc = XDocument.Load(ktXmlReader.ReadSubtree()); it works the ...
0
votes
2answers
55 views

Retrieving Element from XML with LINQ

I have the following XML <Group> <Id>2</Id> <GroupName>Fizzy Drinks</GroupName> <DateCreated>0001-01-01T00:00:00</DateCreated> ...
1
vote
1answer
60 views

Getting XML Items depending on a specific Parent ID LINQ

I have the following XML <Group> <Id>1</Id> <GroupName>Fruit Juices</GroupName> <PersonId>46</PersonId> ...
0
votes
3answers
107 views

Distinct Dictionary Using LINQ

I am trying to get the dictionary of distinct values using LINQ. I have tried using this: var roleRefList = xDocument.Root.Descendants() .Where(x => ...
0
votes
4answers
192 views

Handling null values and missing columns in Linq-to-Xml

I have a user-supplied DataTable with the following information: | Name | Alias | |--------------------------- | Batman | Dark Knight | | Superman | Man of Steel | | Spiderman | null ...
0
votes
2answers
78 views

How to add the custom attributes value from xml element in c# using linq?

Hi i have a xml document <task> <directory path="C:\Backup\"/> <days value="2" /> </task> I want to get the path of the directory and the days value from this in c# using ...
1
vote
3answers
72 views

linq to xml query with all attributes

I have a xml document like this <Products> <Product Name="Mobile Device" Code="10000000000000000006"> <Providers> <Provider Name="VODA" Code="VODA"> ...
-1
votes
2answers
134 views

Adding XElement inside a XML Element/Node in c# using Linq

i want to create some xml with this format <root> <columns> <column name="name1" value="value1" /> <column name="name2" value="value2" /> <column name="name3" ...

1 2 3 4 5 19