Posts

Showing posts from April, 2008

A quick look at the LINQ Architecture

Image
LINQ is a new feature in Visual Studio 2008, extending the capabilities of C# and VB. We can use Language Integrated Query in querying collections, objects, xml and entities. For as long as an object derives from IEnumerable it can be queried using LINQ, LINQ can be used in the following ways. LINQ to SQL LINQ to XML LINQ to Object LINQ to Entities What does LINQ do? In LINQ to SQL it converts objects queries to SQL Command and when it receives the resultset from the database it then converts it back to objects. Below is an illustration of the LINQ Architecture.

Jump Starting LINQ

I'll be dedicating two weeks to study LINQ using C# and VS 2008, I'll be using the book titled "LINQ Quickly, A Practical Guide to Programming Language Integrated Query with C#" by N. Satheesh Kumar. I'll be discussing each chapter of the book and cite some of my own examples. Just to give you an overview of what I'm currently engaged in, I'm doing this web development project using ASP.Net and C#, it's an Inventory and Sales System for an importer and assembler of MAN buses here in the Philippines. Our team is composed of three developers including myself and a PM, the duration of the project is within six months period.