Viewing entries tagged
Training

Comment

Weekly Training - LINQ & Silverlight

This weeks session was on LINQ and Silverlight.

LINQ

The LINQ session was a pretty basic roundup of some of the most common extension methods that you use with LINQ. Try filling out the blanks in the following code snippet

Comment

Comment

Weekly Training - New C# 3.0

This week’s training was on the new features of C# 3.0. Namely:

  • Automatically Implemented Properties
  • Object & Collection Initializers
  • Dynamic Local Variables
  • Anonymous Types
  • Extension Methods

Auto Props, Initializers and Dynamic Local Variables are a godsend to C# devs. It simplifies coding greatly and makes writing unit test cases a breeze.

Comment

Comment

Weekly Training - ASP.NET Dynamic Data

This week I ran a quick training session at SSW on ASP.NET Dynamic Data. I used the Developing Data Driven Web Applications Using ASP.NET Dynamic Data session that David Ebbo did at MIX08. Some nice take aways from this are:

  1. Very easy way of generating data entry pages for your tables
  2. Great for admin pages
  3. Template based so it’s easily customizable
  4. Rich relationships in your data grid
  5. Free filtering, sorting, paging, editing, deleting

Comment