Understanding LINQ to SQL (1) Object-Relational Mapping
2010-03-28
The easiest way of modeling is to use Visual Studio IDE. This way works with SQL Server 2000, SQL Server 2005, SQL Server 2008, SQL Server 2008 R2
2251 words
|
11 minutes
Naming in Visual Studio 2010 advertisement
2010-03-28
A great advertisement for Visual Studio 2010 has been released. Click to dow
31 words
|
1 minute
Understanding LINQ to Objects (8) The Design Of IEnumerable<T>
2010-03-20
Currently in .NET, iterator pattern is implemented via IEnumerable<T> and IEnumerator<T> (or IEnumerable and IEnumerator)
232 words
|
1 minute
Understanding LINQ to Objects (3) Iterator Pattern and foreach
2010-03-14
LINQ to Objects provides fluent query methods in a functional paradigm. All these queries work with IEnumerable<T> sequence, and the values in the sequence will be processed with either deferred execution or immediate execution.
1568 words
|
8 minutes
The protocol of AJAX
2010-03-09
This is a true story. This morning I went to office by train of Beijing subway, and 4 developers were sitting next to me and talking about Web development and their Web product. After a while, someone
106 words
|
1 minute
Introducing LINQ (3) Programming Paradigms
2010-03-02
Programming paradigm is the fundamental style of programming.
1144 words
|
6 minutes
Resolving The nvlddmkm.sys Blue Screen Issue
2010-01-30
I started to use ATI discrete graphic cards since 2002. At the end of 2009, I got my first pair of NVIDIA cards, ,
140 words
|
1 minute
The Order Issue of XAML Attributes
2009-12-17
When programming Silverlight, it is neccessary to pay attention to the order of the XAML element’s attributes. Here is a simple example.
165 words
|
1 minute
Understanding C# Features (10) Query Expression
2009-12-16
C# query expression defines a SQL-like query. The following is a query expression working on an IEnumerable<int> sequence
1443 words
|
7 minutes
Understanding C# Features (9) Partial Method
2009-12-16
The partial keyword is introduced since C# 2.0. It enables class/struct/interface definition to be split to multiple code files at design time.
326 words
|
2 minutes