If you have worked with SQL Server, then I am sure you have used the SQL LIKE operator to fetch a specified pattern in your SQL table. The LIKE uses a “%” (percent) sign to fetch a pattern. However, ...
Any discussion on LINQ to XML is incomplete without mentioning one of its most interesting features, which is the Conditional Element Selection or filtering data using the “where” clause. If you are ...
I have written many articles before on how to read data from an XML file using LINQ in Asp.Net. Articles such as using LINQ Contains method to do SQL Like search and how to find the next or previous ...
The code snippet in this post is in response to a mail that I have received a few days back from a user, who asked me, how to query and fetch data from an XML file using LINQ in descending Order ...
LINQ or Language Integrated, as you know is set of features introduced first with .Net framework 3.5 (Visual Studio 2008), which provides powerful queries (language) to read and update literally any ...
Let me show you how to traverse through an XML document using LINQ in Asp.Net. LINQ provides properties that are useful to navigate through various elements in an XML document. Like a database, you ...
While browsing the net, you might have come across websites that display their products using Images. Businesses around the world now rely heavily on using beautiful thumbnail images to attract their ...
Just recently, I was working on a project that required editing values in an XML file using LINQ. The LINQ query worked fine on my local machine, the code however did not work as expected on the serve ...