Understanding C# Features (6) Closure
2016-01-18
In a C# class, it is perfectly nature normal thing for a method to access a variable defined inside or outside its body.
998 words
|
5 minutes
Understanding C# Features (7) Higher-Order Function
2016-01-18
Higher-order function is a function taking one or more function parameters as input, or returning a function as output.
715 words
|
4 minutes
Entity Framework and LINQ to Entities (1) IQueryable<T> and Remote Query
2016-01-16
The previous chapters discussed LINQ to Objects, LINQ to XML (objects), and Parallel LINQ (to Objects). All of these APIs query in memory objects managed by .NET. This chapter discusses Entity Framewo
1907 words
|
10 minutes
End-to-end: Setup continuous integration/continuous delivery for ASP.NET Core + SQL database with GitHub, AppVeyor and Azure
2016-01-14
I have a web project “Chinese Etymology ()” for searching Chinese character’s etymologies and ancient Chinese characters. It is developed with Microsoft tec
1209 words
|
6 minutes
Easy Ways to Test SQL Server/SQL Azure Connection
2016-01-11
It is incredibly easy to test the SQL Server/Azure SQL Database connectivity or firewall settings from Windows, even without SSMS ([SQL Server Management Studio](https://en.wikipedia.org/wiki/SQL_Serv
141 words
|
1 minute
Detect Chinese Character in Unicode String
2016-01-10
Recently, when trying to convert some directory/file names between Chinese and English, it is necessary to detect if a Unicode string contains Chinese characters. Unfortunately, Chinese language detec
212 words
|
1 minute
Entity Framework and LINQ to Entities (7) Data Changes
2016-01-10
Besides LINQ to Entities queries, Entity Framework also provides rich APIs for data changes.
2911 words
|
15 minutes
Installing Android 6 Marshmallow on Nexus 7
2015-10-22
I got a ) in 2013. In 2014 it was upgraded to , and then became way slower
281 words
|
1 minute
Attach SQL Server 2000 database to SQL Server 2014
2015-04-10
In the , the is used. It
1416 words
|
7 minutes
Understanding C# async / await (3) Runtime Context
2015-01-01
Understanding C# async / await:
1339 words
|
7 minutes