Tagged Questions

0
votes
2answers
21 views

XLinq vs. SqlDataReader performance

As a part of trying to repair stuff in a fairly messed up legacy system I have a method making a call to a stored procedure in our SQLServer database. Nothing in this set up is ideal, but it is what I …
0
votes
1answer
25 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 an xdocument for all …
0
votes
0answers
69 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 numbers from a XElement …
1
vote
3answers
66 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 all compile to the …
1
vote
2answers
35 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 IValueConverter, and …
0
votes
1answer
89 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> ... <alias /> ... …
0
votes
1answer
139 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 using …
0
votes
4answers
677 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 XNamespace Namespace = …
0
votes
1answer
116 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.
0
votes
2answers
147 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? <HierarchicalDataTemplate DataType="grupo" …
2
votes
3answers
486 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 to use when coding …
5
votes
1answer
239 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 index generator using …
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 create XElement nodes …
0
votes
2answers
242 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, preserving all …
0
votes
0answers
94 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 entries which fit the …