Tagged Questions

0
votes
1answer
16 views

Remove all empty elements using xlinq

I'm doing some transforms using xlinq and some of those transforms can result in leaving empty elements in the document. Once I am done all of those transforms, how can I query a …
0
votes
2answers
235 views

How to save XPathExpression result to separate XML with ancestor structure?

Hi! I'm parsing big XML file with XPathExpression selection for some nodes existing at various depth levels. What is the easiest way to export selected nodes to separate XML file, …
0
votes
0answers
57 views

transform List<XElement> to List<XElement.Value>

I have a result of a xlinq that is an enumerable with id and phones, I want to transform that to a Dictionary, that part is simple, however the part of transforming the phone numbe …
1
vote
3answers
63 views

Is XLINQ available with C# 2.0SP1

I was pleasantly surprised a few months ago to learn that I could use many C# 3.x constructs (anonymous types, lambdas, automatic properties) in C#2.0, due to the fact that they al …
1
vote
2answers
32 views

Why does one of the paths not bind in this scenario?

Elements and FirstAttribute bind as I'd expect (if I didn't know it's a method), but Attributes does not, despite being a member of XElement, just like the others. I know about IVa …
0
votes
2answers
133 views

How to apply a DataTemplate to a XElement subclass?

Hi, when I subclass from XElement, the DataTemplate that works for XElement using the element name as DatatType, doesn't work for the subclass. Any idea? <HierarchicalDataTempl …
0
votes
1answer
85 views

Efficiently “drilling down” into XML tree with xlinq?

I'm writing a program to parse some third-party XML files. The structure is something like... <CharacterSheet> ... <StatBlock> ... <Stat> ... <ali …
0
votes
1answer
127 views

ManagedRuntimeError System.NotSupportedException: XLinq. Developing Silverlight in C# With Visual Web Developer

I'm using Visual Web Developer to build a Silverlight Class Library. I have another project where the Class Library is imported and implemented. It's loading an XML file and I'm us …
0
votes
4answers
585 views

adding/creating namespace to root xelement element in c#

i am creating xml using linq.xml through xelement. my hirerachy is some thing like this I want this schema 2 str here is my code for schema generation XNamesp …
0
votes
1answer
113 views

Create xml from xsd with xlinq

How do I generate, based on a xsd and c#, an xml containing only the mandatory elements. I would prefer to use xlinq but I am also open to alternatives.
2
votes
3answers
461 views

The most efficient way to parse Xml

The .Net framework now has (at least) four different methods of reading an Xml string. I've used each of XmlDocument, XmlReader, XPath and XElement, but which is the most efficient …
1
vote
2answers
2k views

How to create XElement with default namespace for children without using XNamespace in all child nodes

I'm trying to use System.Xml.Linq to create XHTML documents. Thus, the vast majority of the nodes in my trees ought to use this namespace: http://www.w3.org/1999/xhtml I can cre …
5
votes
1answer
228 views

Library for parsing XHTML files with XLINQ

When I realized I needed to create an index for approximately 50 XHTML pages, which may be added/deleted/renamed/moved in the future, I thought "No problem -- I'll write a quick in …
0
votes
0answers
88 views

rss parsing using XLinq question

So I started learning XLinq last evening and I thought I would try to parse a samle RSS document like found at http://weblogs.asp.net/scottgu/rss.aspx My test was to find all entr …