LINQ to XML in Depth (3) Manipulating XML
2019-08-27
Besides creating and querying XML, LINQ to XML also provides APIs for other XML manipulations, including cloning, deleting, replacing, and updating XML structures:
1943 words
|
10 minutes
Installing Android 9 Pie with Microsoft apps on Nexus 7
2019-08-20
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)
2019-08-16
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
2986 words
|
15 minutes
LINQ to XML in Depth (1) Modeling XML
2019-08-10
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
1897 words
|
9 minutes
Setup Open Live Writer and sync with Windows Live Writer cross computers
2019-07-22
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
378 words
|
2 minutes
LINQ to Objects in Depth (7) Building Custom Query Methods
2019-07-07
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
2853 words
|
14 minutes
LINQ to Objects in Depth (6) Advanced Queries in Interactive Extensions (Ix)
2019-07-06
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
5711 words
|
29 minutes
LINQ to Objects in Depth (5) Query Methods Implementation
2019-07-05
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
7145 words
|
36 minutes
LINQ to Objects in Depth (4) Deferred Execution, Lazy Evaluation and Eager Evaluation
2019-07-04
As fore mentioned, when LINQ to Objects’ collection queries and value queries are called, they start to evaluate query result. When sequence queries are called, they do not evaluate any query result,
1621 words
|
8 minutes
LINQ to Objects in Depth (3) Generator
2019-07-03
After understanding how to use LINQ to Objects queries, this chapter starts to discuss how these queries work internally, including how they execute and how they are implemented. These insights help d
2585 words
|
13 minutes