189

Overview

One of the things I've asked a lot about on this site is LINQ. The questions I've asked have been wide and varied and often don't have much context behind them. So in an attempt to consolidate the knowledge I've acquired on Linq I'm posting this question with a view to maintaining and updating it with additional information as I continue to learn about LINQ.

I also hope that it will prove to be a useful resource for other people wanting to learn about LINQ.

What is LINQ?

From MSDN:

The LINQ Project is a codename for a set of extensions to the .NET Framework that encompass language-integrated query, set, and transform operations. It extends C# and Visual Basic with native language syntax for queries and provides class libraries to take advantage of these capabilities.

What this means is that LINQ provides a standard way to query a variety of datasources using a common syntax.

What flavours of LINQ are there?

Currently there are a few different LINQ providers provided by Microsoft:

There are quite a few others, many of which are listed here.

What are the benefits?

  • Standardized way to query multiple datasources
  • Compile time safety of queries
  • Optimized way to perform set based operations on in memory objects
  • Ability to debug queries

So what can I do with LINQ?

Chook provides a way to output CSV files
Jeff shows how to remove duplicates from an array
Bob gets a distinct ordered list from a datatable
Marxidad shows how to sort an array
Dana gets help implementing a Quick Sort Using Linq

Where to start?

A summary of links from GateKiller's question are below:
Scott Guthrie provides an intro to Linq on his blog
An overview of LINQ on MSDN

ChrisAnnODell suggests checking out:

What do I need to use LINQ?

Linq is currently available in VB.Net 9.0 and C# 3.0 so you'll need Visual Studio 2008 or greater to get the full benefits. (You could always write your code in notepad and compile using MSBuild)

There is also a tool called LinqBridge which will allow you to run Linq like queries in C# 2.0.

Tips and tricks using LINQ

This question has some tricky ways to use LINQ

Community
  • 1
  • 1
lomaxx
  • 104,787
  • 56
  • 140
  • 177
  • +1 for a great post and the reference to ScottGu's blog. It's a great resource and where I initially learned LINQ. – Evan Plaice Jun 25 '10 at 05:02
  • Hooked On LINQ goes to some japanese site. The google translate talks about rimming and other butt stuff that's nsfw. :S I can't edit it for some reason, though. – Shane Jan 25 '18 at 22:48

9 Answers9

12

LINQ to entities:

I've got a lot more I tagged on Delicious.com.

Chris S
  • 62,476
  • 49
  • 214
  • 238
  • Why this delicious.com redirects to an extension name called Dmail on chrome store? o.O You mean https://del.icio.us/ instead? – Soner Gönül Mar 04 '19 at 11:20
6

Mention LINQ to Entities since ADO.NET Entity Framework will be an important .NET module.

Andrei Rînea
  • 18,961
  • 16
  • 112
  • 162
4

IMHO, an overlooked, but important, benefit is the coding efficiency of LINQ, e.g how much can be accomplished with so little code. I personally find the query syntax easy to read and comprehend.

Matthew Sposato
  • 1,605
  • 1
  • 11
  • 12
4

Get the book Linq in Action it is an easy read for a coding book and really teaches you how to use Linq and the new features of .NET 3.5 some of the cool parts they put in for the language.

David Basarab
  • 67,994
  • 42
  • 125
  • 155
4

A few LINQ Tips:

  • Apply filters before a join to improve query performance
  • Filter LINQ queries using object reference comparison
  • Apply aggregates to empty collections in LINQ to SQL queries
  • Delay loading a property in LINQ to SQL
  • Use table-valued functions with eager loading turned on
  • Put joins in the correct order in a LINQ to Objects query
  • Compose a LINQ query inside a loop

http://www.aspnetpro.com/articles/2009/04/asp200904zh_f/asp200904zh_f.asp

Konstantin Tarkus
  • 35,208
  • 14
  • 127
  • 117
3

I think, the answer to "What flavors of LINQ are there?" is incomplete. First of all, you can create your own "flavor". Yes, it is an advanced task, but there are a lot of different LINQ implementations now.

Here is the list of existing LINQ providers (plus some more resources on learning LINQ) on Charlie Calvert's blog: Links to LINQ.

And also there is an excellent series of blog posts by Matt Warren on how to create your own LINQ Provider: LINQ: Building an IQueryable provider series

Alexandra Rusina
  • 10,431
  • 2
  • 18
  • 16
3

Some caveats about using LINQ to SQL:

Has Microsoft really killed LINQ to SQL?

Is LINQ to SQL DOA?

There's also some controversy about the first version of Entity Framework, including a petition.

Community
  • 1
  • 1
DOK
  • 31,405
  • 7
  • 58
  • 91
2

My 2 cents , Read chapters "11 Query expressions and LINQ to Objects" and "12 LINQ beyond collections" in "C# in Depth" book to understand how LINQ works.

refactor
  • 10,094
  • 21
  • 63
  • 96
0

For Linq Practice

If you want some practice on LINQ with exercises and answers, really easy to set up and, in my opinion, awesome:

https://github.com/walkhard/linq-exercises

Download from git, open in Visual Studio. Your job is to make the tests pass.

[disclosure: i learned some linq from it and I contribute to the project so yeah i think it's an awesome, fast and efficient way to learn.]

BKSpurgeon
  • 24,945
  • 9
  • 86
  • 68