August 2010
Intermediate to advanced
1224 pages
34h 17m
English
Visual Studio 2008 introduced the language feature set called LINQ (for Language-Integrated Query). LINQ is a programming model that takes advantage of many of the features discussed in this section. It provides language extensions that change the way you access and work with data. With it, you can work with your data using object syntax and query collections of objects using VB and C#.
You can use LINQ to map between data table and objects (see Chapter 21, “Working with Databases”). In this way, you get an easier, more productive way to work with your data. This includes full IntelliSense support based on table and column names. It also includes support for managing inserts, updates, deletes, and ...