Understanding LINQ to SQL (1) Object-Relational Mapping
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
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>
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
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
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
Programming paradigm is the fundamental style of programming.
1144 words
|
6 minutes
Resolving The nvlddmkm.sys Blue Screen Issue
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
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
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
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