By tag: LINQToXML
0
kicks
LINQ to XML - XPath
LINQ to SQL may be on it's way out, but LINQ is no way out at all! And don't worry about LINQ to SQL, the ADO.NET Entity Framework is available and guess what it's awesome.
Another good usage for LINQ is when you need to query an XML file. When working with LINQ to XML you may remember the old day...
0
kicks
Silverlight 2.0 - Using Silverlight DataGrid to consume ASMX Web Servi
Microsoft released Silverlight 2.0 on October 13, 2008. Silverlight 2 provides cross-browser rich UI experience which developers can use to author media rich applications using .NET language (C#, Visual Basic etc) of their choice. The article will demonstrate working of Silverlight 2.0 enabled UI by...
0
kicks
Performance: LINQ to XML vs XmlDocument vs XmlReader
Compares speeds of XML parsing techniques. Ultimately XmlReader beats LINQ to XML in almost every run except for very small XML documents. What's interesting though is how the numbers scale between text encodings.
0
kicks
REST to collection builder using LINQ to XML
Few weeks ago, I did a post about how can I handle REST response using LINQ To XML. You can take a look at it here.
http://weblogs.asp.net/mehfuzh/archive/2008/01/11/rest-with-linq-to-xml.aspx
Now , this is nice that we can parse REST response with LINQ To XML but at the same time
...