Understanding LINQ to SQL (7) Data Changing
After understanding how to retrieve data with LINQ to SQL, now take a look at data change (create (insert) / update / delete).
2152 words
|
11 minutes
Understanding LINQ to SQL (6) Working With Deferred Execution
Similar with LINQ to Objects, LINQ to SQL supports deferred execution when possible.
1428 words
|
7 minutes
Understanding LINQ to SQL (5) Remote And Local Method Call
Since LINQ to SQL is translating C# methods into SQL, all the C# methods are required to make sense in SQL.
669 words
|
3 minutes
Crazy Bug in Visual Studio 2010 RTM: Copy And Paste
The copy / paste functionality is very buggy in Beta and RC. In Beta sometimes this even cause Visual Studio crash. Now after using RT
182 words
|
1 minute
Blog Code Font Change: From Courier New to Consolas
is an excellent (non-proportional) [typeface](http://en.wikipedia.org/wik
153 words
|
1 minute
Understanding LINQ to SQL (4) Data Retrieving Via Query Methods
now it is time to take a deeper look at the detail of SQL Server data CRUD manipulation. This post will focus on how to retrieve (SELECT) data from SQL Server via LINQ to SQL.
3741 words
|
19 minutes
Playing with the CPU Usage Curve
In the book “”, which talks about Microsoft interview questions, there is a interesting section: Control the CPU curve of [Windows Task Manag
516 words
|
3 minutes
The Volume In Windows Media Center
I developed a tool for in 2008 in , and I got a very cool Windows Media Center remote controller. Sin
138 words
|
1 minute
Understanding LINQ to SQL (3) Expression Tree
In LINQ to Objects, lamda expressions are used everywhere as anonymous method, like Where().
1787 words
|
9 minutes