The i-Technology Media!
Register | Log in
   
 
.NET  ·  AJAX  ·  CLOUD  ·  ECLIPSE  ·  FLEX  ·  OPEN WEB  ·  iPHONE  ·  JAVA  ·  LINUX  ·  OPEN SOURCE  ·  ORACLE  ·  PBDJ  ·  SEARCH  ·  SILVERLIGHT  ·  SOA  ·  VIRTUALIZATION  ·  WEB 2.0  ·  WIRELESS  ·  XML
Comments
Google Wave Invitation Giveaway
By Aditya Banerjee
Timo Hirvonen wrote: I would really appreciate an invitation. Been desperately trying to find one :) timo [dot] hirvonen [at] gmail [dot]com
Nov. 27, 2009 11:13 AM EST
Cloud Expo on Google News
Did you read today's front page stories & breaking news?


2009 East
PLATINUM SPONSORS:
IBM
Smarter Business Solutions Through Dynamic Infrastructure
IBM
Smarter Insights: How the CIO Becomes a Hero Again
Microsoft
Windows Azure
GOLD SPONSORS:
Appsense
Why VDI?
CA
Maximizing the Business Value of Virtualization in Enterprise and Cloud Computing Environments
ExactTarget
Messaging in the Cloud - Email, SMS and Voice
Freedom OSS
Stairway to the Cloud
Sun
Sun's Incubation Platform: Helping Startups Serve the Enterprise
POWER PANELS:
Cloud Computing & Enterprise IT: Cost & Operational Benefits
How and Why is a Flexible IT Infrastructure the Key To the Future?
Click For 2008 West
Event Webcasts

2009 East
GOLD SPONSORS:
CA
Get Your Transactions Under Control: SOA Performance Management
Software AG
Performance Driven Adoption: The Secret to Advancing SOA
Intel
The Evolving SOA Appliance: 3 Game-Changing Innovations
SILVER SPONSOR:
Denodo
Data Mashups: Deliver Your Project Faster with Virtualized Data Services Across Internal & External Sources
POWER PANELS:
The Business Value of Service Orientation
Driving Profitability Through User Experience
Click For 2008 West
Event Webcasts
Live Google News by SYS-CON!
Top Three Links You Must Click On


.NET News Desk
Book Review: Pro LINQ
Language Integrated Query in C# 2008

By: Dennis Hayes
May. 24, 2008 08:00 AM

As promised by the author, this book starts with code (“Hello LINQ”), ends with code (a query joining database data with XML data), and is code-heavy in the middle. All the code runs and the output is listed in the book. The code snippets you can steal will quickly recoup the price of the book.

It’s divided into five parts: Introduction, LINQ to Objects, LINQ to XML, LINQ to DataSet, and LINQ to SQL.

Part One has two chapters. In the first chapter, “Hello LINQ,” the author shows how to use LINQ to query XML and SQL databases, and adds that LINQ can also work with DataSets, object, and Entities. He also points out that LINQ (Language Integrated Query) is more of a data-iteration engine, but that Microsoft didn’t want to name its hot new technology “DIE”! Yep, Joseph has a sense of humor, and it pops up from time to time in this book.

The second chapter covers the language enhancements in C# and VB.NET to support LINQ. Note I didn’t specify the version of C# or VB.NET. That’s because the building blocks of LINQ have been being added in one by one since .NET version 2.0. In some cases the author goes into some detail on what problem the language addition was meant to address, and how the addition addresses the problem. The chapter ends with eight pages of details on how the compiler translates LINQ into C# or .NET code. Joseph admits that you’re about as likely to need this information as you need to know what machine code is generated for a foreach loop, but I find it interesting, and I’m impressed that he dug the information up.

The second part covers LINQ to objects, serving also as an overall introduction to LINQ. After a quick intro to LINQ in Chapter Three, Chapter Four covers deferred operations, so-called because they return a type of IEnumerable<T> that will be iterated through at a later time. Chapter Five covers non-deferred types, so-called because they immediately return values of types other than IEnumerable<T>. An example of this would be conversion routines such as ToList.

Part three covers LINQ to XML, with Chapter Six kicking things off with a description of creating a simple XML document using DOM to show the amount of code involved so we can see how big an improvement LINQ to XML is. Chapter Seven covers the LINQ XML API, and discusses the “Halloween” problem, so-called because it was first discussed by experts on Halloween. The problem occurs if part of an XML document is modified while a LINQ query is still iterating over it. Chapter Eight covers LINQ-to-XML operators, such as “DescendantNodes,” which return a sequence containing the descendant nodes of each element or document. Chapter Nine covers transformations and validation. If you plan on using LINQ and XML, the code snippets in this section are worth their weight in gold.

Part four consist of two very short chapters covering LINQ to DataSet. The author chose to cover LINQ DataSet operations before covering LINQ to SQL because LINQ to SQL only works with Microsoft SQL Server, where you can retrieve DataSets from almost any database and then use LINQ to query the results. Chapter 10 covers DataRow and DataTable operators. Chapter 11 quickly covers typed DataSets. As I said, it’s a short section.

The fifth and final part covers LINQ to SQL. Chapter 12 is another short chapter that introduces us to LINQ to SQL. The author points out that most technologies that link relational databases to business classes lose the ability to do queries against the classes. He then discusses a bit about how entity-mapping classes solve this problem by allowing LINQ to run queries and even updates against classes created from SQL databases.

In Chapter 13 the author gives tips and discusses tools. Joseph points out that if we don’t understand his tips now, he’s done his job, because he wants to give us tips before we need them, not after we’ve learned we need them the hard way. The tools he discusses are SQLMetal and Object Relational Designer. Both are included in the .NET 3.5 Framework.

Chapter 14, “LINQ to SQL Database Operations,” is described as “a whirlwind tour of standard database operations.” It covers such things as how LINQ-to-SQL queries are executed in the database, and the issues caused by the fact that LINQ stands for “Language Integrated Query,” where queries are written as close to the programming language (C# in our case) as possible, but have to be translated into true SQL for execution. This, for example,

where c.CustomerID.TrimEnd(‘k’) == “Lazy”

throws an error because TrimEnd is not valid SQL.

where c.CustomerID == “Lazy”. TrimEnd(‘k’)

executes without error because TrimEnd is a valid .NET function. Understand the difference? If not, buy the book and let Joseph explain it. Simply put, in this case the left side is evaluated by SQL and the right side is evaluated by C#.

Chapter 15 covers LINQ-to-SQL entity classes, including generating entity classes, extending entity classes with partial methods, and important System.Data.Linq API classes. Chapter 16 is a long chapter covering the details of the DataContext class, including example code for many of its functions. Chapter 17 covers detecting and resolving concurrency conflicts including pessimistic concurrency and transactions. The final chapter, Chapter 18, covers views, entity class inheritance, and more information on transactions.

This is a well-written book, full of tips and traps, with enough source code snippets to make it worth buying for that reason alone. It’s value-packed with information from someone who clearly knows what he’s talking about. It’s one of the better books I’ve seen on LINQ and will be a welcome addition to my bookshelf.

Title: Pro LINQ: Language Integrated Query in C# 2008
Author: Joseph C. Rattz, Jr.
Publisher: Apress
ISBN: 978-1-59059-789-7
Price: U.S. $44.99

Published May. 24, 2008— Reads 3,188
Copyright © 2008 SYS-CON Media, Inc. — All Rights Reserved.
Syndicated stories and blog feeds, all rights reserved by the author.
About Dennis Hayes
Dennis Hayes is a programmer at Georgia Tech in Atlanta Georgia where he writes software for the Adult Cognition Lab in the Psychology Department. He has been involved with the Mono project for over six years, and has been writing the Monkey Business column for over five years.

Add Your Feedback

In order to post a comment you need to be registered and logged in.

Register | Sign-in

Reader Feedback: Page 1 of 1

Subscribe to the World's Most Powerful Newsletters
Subscribe to Our Rss Feeds & Get Your SYS-CON News Live!
Click to Add our RSS Feeds to the Service of Your Choice:
Google Reader or Homepage Add to My Yahoo! Subscribe with Bloglines Subscribe in NewsGator Online
myFeedster Add to My AOL Subscribe in Rojo Add 'Hugg' to Newsburst from CNET News.com Kinja Digest View Additional SYS-CON Feeds
Publish Your Article! Please send it to editorial(at)sys-con.com!

Advertise on this site! Contact advertising(at)sys-con.com! 201 802-3021

SYS-CON Featured Whitepapers

ADS BY GOOGLE

Breaking Java News
Garson Gold Announces Filing of Audited Financial Statements for the Year Ended July 31, 2009
Khan Acknowledges ARMZ Intention to Make an Unsolicited Offer
Killdeer Minerals Announces Financing With MineralFields Group
West Street Announces Third Quarter Results
Homeland Uranium Inc. Reprices Options
South American Silver Corp. Completes $2.78 Million Financing
Stone Resources Limited Announces Resignation of Directors
L.A.'s West 3rd Street to Launch Public Valet Service Tomorrow
Lorus Therapeutics Raises $2.46 Million in Equity Financing

ADVERTISE   |   MAGAZINE SUBSCRIPTIONS   |   FREE BREAKING-NEWSLETTERS!   |   SYS-CON.TV   |   BLOG-N-PLAY!   |   WEBCAST   |   EDUCATION   |   RESEARCH

.NET Developer's Journal - .NETDJ   |   ColdFusion Developer's Journal - CFDJ   |   Eclipse Developer's Journal - EDJ   |   Enterprise Open Source Magazine - EOS
Open Web Developer's Journal - OPENWEB   |   iPhone Developer's Journal - iPHONE   |   Virtualization - Virtualization   |   Java Developer's Journal - JDJ   |   Linux.SYS-CON.com
PowerBuilder Developer's Journal - PBDJ   |   SEO / SEM Journal - SJ   |   SOAWorld Magazine - SOAWM   |   IT Solutions Guide - ITSG   |   Symbian Developer's Journal - SDJ
WebLogic Developer's Journal - WLDJ   |   WebSphere Journal - WJ   |   Wireless Business & Technology - WBT   |   XML-Journal - XMLJ   |   Internet Video - iTV
Flex Developer's Journal - Flex   |   AJAXWorld Magazine - AWM   |   Silverlight Developer's Journal - SLDJ   |   PHP.SYS-CON.com   |   Web 2.0 Journal - WEB2
Apache   |   CMS   |   CRM   |   HP   |   Oracle Journal   |   Perl   |   Python   |   Red Hat   |   Ruby on Rails   |   SAP   |   SaaS

SYS-CON MEDIA:   ABOUT US   |   CONTACT US   |   COMPANY NEWS   |   CAREERS   |   SITE MAP
SYS-CON EVENTS:   |  AJAXWorld Conference & Expo  |  iPhone Developer Summit  |  Cloud Computing Conference & Expo  |  SOA World Conference & Expo  |  Virtualization Conference & Expo
INTERNATIONAL SITES:   India  |  U.K.  |  Canada  |  Germany  |  France  |  Australia  |  Italy  |  Spain  |  Netherlands  |  Brazil  |  Belgium
 Terms of Use & Our Privacy Statement     About Newsfeeds / Video Feeds
Copyright ©1994-2008 SYS-CON Publications, Inc. All Rights Reserved. All marks are trademarks of SYS-CON Media.
Reproduction in whole or in part in any form or medium without express written permission of SYS-CON Publications, Inc. is prohibited.
 
close this window