active questions tagged xlinq - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T17:55:16Z http://stackoverflow.com/feeds/tag/xlinq http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1921809/xlinq-vs-sqldatareader-performance 0 XLinq vs. SqlDataReader performance Banang 2009-12-17T13:33:26Z 2009-12-17T15:16:40Z <p>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 have got to work with. The two options I have is to use a SqlDataReader to read the stream as rows from the database, or to be handed the response as a chunk of xml. Even though xml has never really solved anything (insert cute wink here), I am leaning toward choosing that option and using XLinq to create my business objects from the data, simply because that solution would look less like someone vomited on the screen. ;)</p> <p>The thing I'm concerned about, however, is to introduce performance issues by taking this approach. Is there anyone out there with experience in this that can help me? Is Xlinq likely to slow my already slow code down further?</p> http://stackoverflow.com/questions/1668148/remove-all-empty-elements-using-xlinq 0 Remove all empty elements using xlinq Dave 2009-11-03T15:43:43Z 2009-11-04T14:28:20Z <p>I'm doing some transforms using xlinq and some of those transforms can result in leaving empty elements in the document. </p> <p>Once I am done all of those transforms, how can I query an xdocument for all empty elements?</p> <p>In other words; if I remove all <code>&lt;a&gt;</code> tags which happen to be the only element inside an <code>&lt;li&gt;</code> tag, how do I remove the empty <code>&lt;li&gt;</code>?</p> <p>Before:</p> <pre><code>XDocument.Parse(@"&lt;body&gt; &lt;ul&gt;&lt;li&gt;&lt;a href="#"&gt;Joy&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;Hi.&lt;/p&gt; &lt;/body&gt;").Descendants("a").Remove(); </code></pre> <p>After:</p> <pre><code>&lt;body&gt; &lt;ul&gt;&lt;li/&gt;&lt;/ul&gt; &lt;p&gt;Hi.&lt;/p&gt; &lt;/body&gt; </code></pre> <p>I would prefer:</p> <pre><code>&lt;body&gt; &lt;p&gt;Hi.&lt;/p&gt; &lt;/body&gt; </code></pre> http://stackoverflow.com/questions/380911/how-to-save-xpathexpression-result-to-separate-xml-with-ancestor-structure 0 How to save XPathExpression result to separate XML with ancestor structure? tomash 2008-12-19T13:07:19Z 2009-09-26T16:44:30Z <p>Hi! I'm parsing big XML file with XPathExpression selection for some nodes existing at various depth levels.</p> <p>What is the easiest way to export selected nodes to separate XML file, preserving all direct-ancestors nodes (and their attributes)? C# is preferred.</p> <p>Example source XML :</p> <pre><code>&lt;a&gt; &lt;x&gt; &lt;b&gt; &lt;c/&gt; &lt;z/&gt; &lt;/b&gt; &lt;c/&gt; &lt;/a&gt; &lt;c/&gt; &lt;d&gt;&lt;e/&gt;&lt;/d&gt; </code></pre> <p>Expected target XML for filtering againts "c" nodes</p> <pre><code>&lt;a&gt; &lt;b&gt; &lt;c/&gt; &lt;/b&gt; &lt;c/&gt; &lt;/a&gt; &lt;c/&gt; </code></pre> <p>EDIT: I'm using XPathExpression and XPathNodeIterator because there is additional logic for testing if given node should be inculded in result XML, XPathExpression alone is not enough. So basically I have array of matching XPathNavigator elements, which I want to save to XML with ancestor structure.</p> http://stackoverflow.com/questions/1325654/transform-listxelement-to-listxelement-value 0 transform List<XElement> to List<XElement.Value> Miau 2009-08-25T01:46:01Z 2009-08-25T09:57:22Z <p>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 to a string its proving hard</p> <p>xLinqQuery.ToDictionary(e => e.id, e => e.phones.ToList());</p> <p>will return Dictionary> what i want is a Dictionary ></p> <p>I tried with e.phones.ToList().ForEach(...) some strange SelectMany, etc ot no avail</p> <p>Thanks</p> http://stackoverflow.com/questions/1149494/is-xlinq-available-with-c-2-0sp1 1 Is XLINQ available with C# 2.0SP1 miguel 2009-07-19T08:45:44Z 2009-07-19T09:55:41Z <p>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 same IL...in effect, syntactic sugar.</p> <p>Is this also the case of LINQ and XLINQ? Can i use these constructs while still targeting C#2.0 runtimes?</p> http://stackoverflow.com/questions/977975/why-does-one-of-the-paths-not-bind-in-this-scenario 1 Why does one of the paths not bind in this scenario? Wayne 2009-06-10T20:29:16Z 2009-06-16T03:40:50Z <p>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 I'm using that to get the binding I want on attributes, but I'm curious as to why it works on Elements.</p> <pre><code>&lt;Window x:Class="WpfApplication6.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="Window1" Height="300" Width="300"&gt; &lt;StackPanel&gt; &lt;TextBlock Text="{Binding Path=FirstAttribute}" /&gt; &lt;ListBox ItemsSource="{Binding Path=Elements}" /&gt; &lt;ListBox ItemsSource="{Binding Path=Attributes}" /&gt; &lt;/StackPanel&gt; &lt;/Window&gt; using System.Linq; using System.Windows; using System.Xml.Linq; namespace WpfApplication6 { /// &lt;summary&gt; /// Interaction logic for Window1.xaml /// &lt;/summary&gt; public partial class Window1 : Window { public Window1() { InitializeComponent(); XDocument doc = new XDocument( new XElement("Parent", new XAttribute("attr1", "val"), new XAttribute("attr2", "val"), new XElement("Child1"), new XElement("Child2") ) ); MessageBox.Show("Elements: " + doc.Elements().First().Elements().Count()); MessageBox.Show("Attributes: " + doc.Elements().First().Attributes().Count()); DataContext = doc.Elements().First(); } } } </code></pre> http://stackoverflow.com/questions/765359/how-to-apply-a-datatemplate-to-a-xelement-subclass 0 How to apply a DataTemplate to a XElement subclass? SergioB 2009-04-19T12:41:49Z 2009-06-15T15:00:03Z <p>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?</p> <pre><code>&lt;HierarchicalDataTemplate DataType="grupo" ItemsSource="{Binding Path=Elements}"&gt; &lt;TextBlock Text="{Binding Path=Attribute[name]}" /&gt; &lt;/HierarchicalDataTemplate&gt; &lt;!-- When I build an XDocument with XElements like this the template gets applied --&gt; XDocument _xdoc=XDocument.Load(@"RosterData1.xml"); treeRoster.DataContext = _xdoc; &lt;TreeView Name="treeRoster" ItemsSource={Binding Path=Root.Elements}&gt; &lt;/TreeView&gt; &lt;!-- but if build de XDocument like this the DataTemplate doesn't apply --&gt; XDocument _xdoc=XDocument.Load(@"RosterData1.xml"); XDocument docOther = new XDocument(new XElement("contactos")); var grupos = _xdoc.Descendants("grupo").Select(g =&gt; new Grupo(g)); docOther.Root.Add(grupos.ToArray()); var contactos = _xdoc.Root.Elements("contacto").ToList(); docOther.Root.Add(contactos); treeRoster.DataContext = docOther; &lt;!-- The xml file is like that: &lt;contactos&gt; &lt;grupo name="Amigotes"&gt; &lt;contacto jid="batman@jabber.org" subscription="none" /&gt; &lt;contacto jid="trucoman@jabber-hispano.org" subscription="both" name="truco" /&gt; &lt;contacto jid="mmakinavaja@gmail.com" subscription="none" name="mmakinavaja" /&gt; &lt;contacto jid="ramon@jabber-hispano.org" subscription="both" name="Ramon" /&gt; &lt;/grupo&gt; &lt;grupo name="Lannisters"&gt; &lt;contacto jid="jamie@jabberes.org" subscription="none" /&gt; &lt;/grupo&gt; &lt;contacto jid="tyrion@jabber.org" subscription="none" /&gt; &lt;contacto jid="nslbot@jabber.org" subscription="none" /&gt; &lt;contacto jid="nslbot@jabberes.org" subscription="none" /&gt; &lt;/contactos&gt; --&gt; </code></pre> http://stackoverflow.com/questions/976747/efficiently-drilling-down-into-xml-tree-with-xlinq 0 Efficiently "drilling down" into XML tree with xlinq? Asmor 2009-06-10T16:29:46Z 2009-06-10T16:35:51Z <p>I'm writing a program to parse some third-party XML files. The structure is something like...</p> <pre><code>&lt;CharacterSheet&gt; ... &lt;StatBlock&gt; ... &lt;Stat&gt; ... &lt;alias /&gt; ... &lt;/Stat&gt; ... &lt;/StatBlock&gt; ... &lt;/CharacterSheet&gt; </code></pre> <p>I'm using this in to get some practice with linq, and I'm fining I have to write some really ugly chained queries to get what I want, a list of stats and all their alias.</p> <pre><code>var CharSheet = from i in character.Elements() where i.Name == "CharacterSheet" select i; var StatBlocks = from sheet in CharSheet from statBlock in sheet.Elements() where statBlock.Name == "StatBlock" select statBlock; var stats = from statBlock in StatBlocks from stat in statBlock.Elements() select stat; var statAliases = from stat in stats from alias in stat.Elements() where alias.Name == "alias" select new { stat, alias }; </code></pre> <p>And I realize I could make that into one really long query using "into" (which is originally how I had it), but that just made it even more dense and difficult to work with.</p> <p>It seems like there's got to be a simpler way to do what I'm trying to do.</p> http://stackoverflow.com/questions/966051/managedruntimeerror-system-notsupportedexception-xlinq-developing-silverlight-i 0 ManagedRuntimeError System.NotSupportedException: XLinq. Developing Silverlight in C# With Visual Web Developer nerdabilly 2009-06-08T17:43:51Z 2009-06-08T17:53:23Z <p>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 XmlSerializer.Deserialize into a class I created with xsd.exe. </p> <p>Sometimes, when loading the XML, I get this error:</p> <pre> Unhandled Error in Silverlight 2 Application Code: 4004 Category: ManagedRuntimeError Message: System.InvalidOperationException: There is an error in XML document (149, 10). ---> System.NotSupportedException: XLinq at System.Xml.Serialization.XmlSerializationReader.ReadXmlNodes(Boolean elementCanBeType) at System.Xml.Serialization.XmlSerializationReader.ReadTypedPrimitive(XmlQualifiedName type, Boolean elementCanBeType) at System.Xml.Serialization.XmlSerializationReader.ReadTypedPrimitive(XmlQualifiedName type) </pre> <p>I've discovered that it only occurs when there is a tag called Extensions in my XML file. At first I thought this was improperly defined in the C# class generated by xsd.exe, but it works if I change Extensions to any other name. Unfortunately, simply changing the name of this tag permanently is not an option. I've ruled out reserved words. Google has no info on this error. </p> http://stackoverflow.com/questions/899403/adding-creating-namespace-to-root-xelement-element-in-c 0 adding/creating namespace to root xelement element in c# Usman Masood 2009-05-22T18:49:26Z 2009-05-23T02:08:14Z <p>i am creating xml using linq.xml through xelement. my hirerachy is some thing like this</p> <p>I want this schema 2 str </p> <p>here is my code for schema generation</p> <pre><code> XNamespace Namespace = XNamespace.Get("urn:APISchema.xsd"); root = new XElement(namepsace + "Foo"); root.Add(new XElement("version", "2")); root.Add(new XElement("foochild", "str")); </code></pre> <p>but the resultant schema is</p> <pre><code>&lt;Foo xlmns="urn:APISchema.xsd"&gt; &lt;version xlmns=""&gt;2&lt;/version&gt; &lt;foochild xlmns=""&gt;str&lt;/foochild&gt; &lt;/Foo&gt; </code></pre> <p>any idea why such problem why it is appending xlmn to root childs...?</p> http://stackoverflow.com/questions/801496/create-xml-from-xsd-with-xlinq 0 Create xml from xsd with xlinq unknown (google) 2009-04-29T08:56:31Z 2009-04-29T09:00:36Z <p>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.</p> http://stackoverflow.com/questions/606304/the-most-efficient-way-to-parse-xml 2 The most efficient way to parse Xml bstoney 2009-03-03T13:01:58Z 2009-03-05T00:10:00Z <p>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 or during execution? Is each designed for a different task, what are the pros and cons?</p> <p><hr></p> <p><b>Update:</b> Using a XmlReader appears to be the quickest way to read xml, which sound reasonable to me, but has it's limitations. I would like to know if there is any performance difference between XmlDocument and XLinq for accessing xml non-sequentially.</p> <p><hr></p> <p><b>Update:</b> I found some posts comparing the different methods of loading an xml document. XmlReader is the fastest, there is insignificant difference between XmlDocument and LINQ to XML until you load a document with 10,000+ node where LINQ to XML comes out in front.</p> <ul> <li><a href="http://www.nearinfinity.com/blogs/page/jferner?entry=performance_linq_to_sql_vs" rel="nofollow">http://www.nearinfinity.com/blogs/page/jferner?entry=performance_linq_to_sql_vs</a></li> <li><a href="http://www.hanselman.com/blog/AtAGlanceXmlReaderVsXPathNavigatorVsXmlDocument.aspx" rel="nofollow">http://www.hanselman.com/blog/AtAGlanceXmlReaderVsXPathNavigatorVsXmlDocument.aspx</a></li> </ul> http://stackoverflow.com/questions/477962/how-to-create-xelement-with-default-namespace-for-children-without-using-xnamespa 1 How to create XElement with default namespace for children without using XNamespace in all child nodes Barry Kelly 2009-01-25T17:34:56Z 2009-02-07T15:11:42Z <p>I'm trying to use <code>System.Xml.Linq</code> to create XHTML documents. Thus, the vast majority of the nodes in my trees ought to use this namespace:</p> <pre><code>http://www.w3.org/1999/xhtml </code></pre> <p>I can create <code>XElement</code> nodes scoped to this namespace easily enough, using an <code>XNamespace</code>, like this:</p> <pre><code>XNamespace xhtml = "http://www.w3.org/1999/xhtml"; // ... new XElement(xhtml + "html", // ... </code></pre> <p>However, I don't want to have to make an <code>XNamespace</code> available throughout all the code that creates HTML nodes, and have to prefix every single <code>XElement</code> (and <code>XAttribute</code>) name I create accordingly.</p> <p>The XML text format itself takes this requirement into account, and permits setting a default namespace in an ancestor which is inherited by descendants, using the reserved <code>xmlns</code> attribute. I'd like to do something similar using <code>System.Xml.Linq</code>.</p> <p>Is this possible?</p> http://stackoverflow.com/questions/486975/library-for-parsing-xhtml-files-with-xlinq 5 Library for parsing XHTML files with XLINQ Ria 2009-01-28T09:09:46Z 2009-01-30T03:29:27Z <p>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 LINQ to XML, since XHTML definitely counts as XML". </p> <p>Of course, as soon as I tried running it, I found out about the fact that XLINQ chokes on XHTML entities like &amp;nbsp;. I got around it by using the following algorithm:</p> <ol> <li>Read XHTML file into string.</li> <li>Use regex search and replace on that string to add a section into the DOCTYPE that defines all relevant entities (because I only care about the "title" attribute in the files I read and my output file does not use any entities right now, it just sets them all to blank, but I may add the actual values later).</li> <li>Parses the result into an XDocument.</li> </ol> <p>To save a file, I do the opposite:</p> <ol> <li>Save XDocument to a string.</li> <li>Strip out the entity definitions.</li> <li>Save to file.</li> </ol> <p>My question is, are there any libraries (especially built-in .Net ones) I can use that will read XHTML files into XDocuments? The code I wrote has accomplished its purpose (to generate the current index and to test the rest of the generator program), and I would really prefer not to spend time testing it if someone else already wrote and tested the same thing.</p> <p>Thank y'all so much for your time, <br /> Ria.</p> <p><strong>Edit:</strong> Thank you so much; this works! I still have to do a little string processing when I save the XHTML (guess the library was not really made for that:)) and I had to fiddle with the source of the Agility Pack slightly to get it to stop indiscriminately sticking a CDATA section around the insides of every style attribute (even when there was already one present), but that's the point of Open Source, right?</p> http://stackoverflow.com/questions/282281/rss-parsing-using-xlinq-question 0 rss parsing using XLinq question rvenugopal 2008-11-11T21:58:52Z 2008-11-12T19:38:22Z <p>So I started learning XLinq last evening and I thought I would try to parse a samle RSS document like found at <a href="http://weblogs.asp.net/scottgu/rss.aspx" rel="nofollow">http://weblogs.asp.net/scottgu/rss.aspx</a></p> <p>My test was to find all entries which fit the following criteria</p> <p>a) Was Posted in the year 2008 b) Had atleast one comment c) Had the tag ".NET"</p> <p>So I am wondering if my solution(though it works) would be considered a "good solution". XLinq gurus please weight in. Code below</p> <pre><code> XDocument document = XDocument.Load(fileName); XNamespace dcNamespace = "http://purl.org/dc/elements/1.1/"; XNamespace slashNamespace = "http://purl.org/rss/1.0/modules/slash/"; var items = from item in document.Descendants("item") where Convert.ToDateTime(item.Element("pubDate").Value).Year == 2008 &amp;&amp; Convert.ToInt32(item.Element(slashNamespace + "comments").Value) &gt; 0 select new { Title = item.Element("title").Value, Link = item.Element("link").Value, PublishedDate = Convert.ToDateTime(item.Element("pubDate").Value), comments = Convert.ToInt32(item.Element(slashNamespace + "comments").Value), Tags = (from category in item.Elements("category") where !string.IsNullOrEmpty(category.Value) orderby category.Value select category).ToList() }; const string requiredTag = ".NET"; var dotNetTaggedItems = from item in items where item.Tags.Any(x =&gt; x.Value == requiredTag) select item; if (items.Any(item =&gt; item.PublishedDate.Year != 2008)) //Check that the year is valid throw new InvalidOperationException("Invalid PublishedDate"); int totalComments = 0; foreach (var taggedItem in dotNetTaggedItems) { if (taggedItem.comments &gt; 0) //Check that the comments are valid throw new InvalidOperationException("Tagged item cannot contain zero value comments"); totalComments += taggedItem.comments; bool found = false; foreach (var tag in taggedItem.Tags) { if (tag.Value == ".NET") { found = true; break; } } if (!found) // Check the required tag was found throw new InvalidOperationException( string.Format("Tagged item does not contain requisite tag - {0}", requiredTag)); } </code></pre>