Home /

| RSS

Different Ways Of Retrieving Data From Collections

C# as a language has matured over years. We have come a long way from the first version of C# to the current which incorporates LINQ. Here is an example I recently used in a training session. My objective was to show students how we can retrieve items from a collection based on a certain [...]

[ More ] August 1st, 2008 | No Comments | Posted in Programming |

LINQ To SQL Tutorial

Introduction
With .NET Framework 3.5 Microsoft released Language Integrated Query aka LINQ. LINQ enables developers to query data sources using a query like syntax with both C# and VB.NET. These data sources can be collections, SQL Server databases, XML, DataSets etc. Other than what is supplied by Microsoft, LINQ is also extensible. This means that you [...]

[ More ] July 31st, 2008 | 80 Comments | Posted in Programming |