LINQ to XML in Depth (3) Manipulating XML
Besides creating and querying XML, LINQ to XML also provides APIs for other XML manipulations, including cloning, deleting, replacing, and updating XML structures:
1680 words
|
8 minutes
Installing Android 9 Pie with Microsoft apps on Nexus 7
Years ago I blogged about on my old Nexus 7 tablet. Now Android 9 is there. This post shows how to install latest Android 9 w
582 words
|
3 minutes
LINQ to XML in Depth (2) Query Methods (Operators)
As fore mentioned, LINQ to XML is just a specialized LINQ to Objects, so all the LINQ to Objects queries can be used in LINQ to XML queries. LINQ to XML provides many additional functions and queries
2695 words
|
13 minutes
LINQ to XML in Depth (1) Modeling XML
XML (eXtensible Markup Language) is widely used to represent, store, and transfer data. .NET Standard provides LINQ to XML APIs to query XML data source. LINQ to XML APIs are located in System.Xml.XDo
1709 words
|
9 minutes
Setup Open Live Writer and sync with Windows Live Writer cross computers
Today I am setting up a new PC. I use Windows Live Writer to write for this blog for years, and found the new installation can no longer work for my blog. I tried Open Live Writer. Fortunately Open Li
371 words
|
2 minutes
LINQ to Objects in Depth (7) Building Custom Query Methods
With the understanding of standard queries in .NET Standard and the additional queries provided by Microsoft, it is easy to define custom LINQ queries for objects. This chapter demonstrates how to def
2383 words
|
12 minutes
LINQ to Objects in Depth (6) Advanced Queries in Interactive Extensions (Ix)
The previous 2 chapters discussed the LINQ to Objects standard queries. Besides these built-in queries provided by System.Linq.Enumerable type in .NET Standard, Microsoft also provides additional LINQ
4791 words
|
24 minutes
LINQ to Objects in Depth (5) Query Methods Implementation
Understanding of internal implementation of LINQ to Objects queries is the ultimate way to master them and use them accurately and effectively, and is also helpful for defining custom query methods, w
5675 words
|
28 minutes