BT

Facilitating the Spread of Knowledge and Innovation in Professional Software Development

Write for InfoQ

Topics

Choose your language

InfoQ Homepage News LINQ Examples Posted

LINQ Examples Posted

Bookmarks

Scott Guthrie has posted the materials from his recent Language INtegrated Query (LINQ) talk at Tech Ed Australia.  For those looking for detailed code samples to understand LINQ further, download these materials. PowerPoint slides are also included in the download for those who want an overview, and even the slides contain quite a bit of code.

LINQ is a set of extensions for .NET to provide a powerful, native query syntax for C# and VB, allowing developers to perform SQL-like queries against any .NET collection or drop down to raw SQL when needed.  LINQ can also query XML and any LINQ result sequence can be databound to ASP.NET controls.  LINQ for entities (formerly described as "ObjectSpaces") is available with the August ADO.NET CTP.  LINQ is currently planned for release with C# 3.0 / VB9 / Visual Studio Orcas / the .NET framework version tentatively known as 3.5.

Example of a LINQ query:

string [] cities = { “Auckland”, “Oslo”, “Sydney”,
       “Seattle”, “Paris”, “Los Angeles” };

IEnumerable places = from city in cities
       where city.Length > 5
             orderby city descending
       select city;


Further reading on LINQ:

Rate this Article

Adoption
Style

Hello stranger!

You need to Register an InfoQ account or or login to post comments. But there's so much more behind being registered.

Get the most out of the InfoQ experience.

Allowed html: a,b,br,blockquote,i,li,pre,u,ul,p

Community comments

  • Beware HTML syntax

    by Matthias Ernst,

    Your message is awaiting moderation. Thank you for participating in the discussion.

    There's probably a <string> missing between 'IEnumberable' and 'places'.

  • Amazing!

    by Tomasz Blachowicz,

    Your message is awaiting moderation. Thank you for participating in the discussion.

    I think the LINQ is amazing. Basically it's one of the most amazing features I've ever seen. I'm a big fan of Hibenrate's HQL query, but LINQ looks like HQL on steroids plus XQuery! I wonder how this stuff is implemented.

    Take a look at this video: channel9.msdn.com/showpost.aspx?postid=114680

  • Re: Beware HTML syntax

    by Jonathan Allen,

    Your message is awaiting moderation. Thank you for participating in the discussion.

    That is correct. Alternately, you can use "var" instead of giving it an explicit type. This new syntax looks like dynamic typing, but in fact is statically checked at runtime.

  • I have a site dedicated to LINQ

    by Joe Rattz,

    Your message is awaiting moderation. Thank you for participating in the discussion.

    Please feel free to come visit.

    www.linqdev.com

  • LINQ in Action samples source code

    by Fabrice Marguerie,

    Your message is awaiting moderation. Thank you for participating in the discussion.

    If you want to see more LINQ examples, you can download for free the complete source code for all the samples from the LINQ in Action book. The samples for all the 14 chapters are provided in both C# and VB.NET.

Allowed html: a,b,br,blockquote,i,li,pre,u,ul,p

Allowed html: a,b,br,blockquote,i,li,pre,u,ul,p

BT