DEV Community

Cover image for Five Common LINQ Methods in Pictures
Cesar Aguirre
Cesar Aguirre

Posted on • Updated on • Originally published at canro91.github.io

Five Common LINQ Methods in Pictures

I originally published this post on my blog a couple of weeks ago. It's part of a post series about LINQ.

One of the best C# features is LINQ. I would say it's the most distinctive of all C# features. But, if you're learning LINQ for the first time, it can be daunting to learn all LINQ methods at once. These are five of the most common LINQ methods in pictures.

Let's work with a list of our favorite movies. Let's write a Movie class (or a record, if you like) with a name, release year, and a rating. And, put our favorite movies in a list.

var movies = new List<Movie>
{
    new Movie("Titanic", 1998, 4.5f),
    new Movie("The Fifth Element", 1997, 4.6f),
    new Movie("Terminator 2", 1991, 4.7f),
    new Movie("Avatar", 2009, 5),
    new Movie("Platoon", 1986, 4),
    new Movie("My Neighbor Totoro", 1988, 5)
};
Enter fullscreen mode Exit fullscreen mode

1. Where

The Where method returns a new collection with only the elements that meet a given condition.

The Where method works like a filter on collections. Think of Where as a replacement for a foreach with an if in it.

Let's filter our list of movies to keep only those with a rating greater than or equal to 4.5.

var favorites = movies.Where(movie => movie.Rating >= 4.5);
Enter fullscreen mode Exit fullscreen mode

This query would be something like this,

Favorite films filtered by rating
Let's keep the films with a rating greater than 4.5

We're using arrows to display our LINQ queries. But, the output of a LINQ query is lazy-evaluated. It means the actual result of a LINQ query is evaluated until we loop through its result.

2. Select

The Select method applies a function to transform every element of a collection.

Let's find only the names of our favorite movies.

var favorites = movies.Where(movie => movie.Rating >= 4.5)
                      .Select(movie => movie.Name);
Enter fullscreen mode Exit fullscreen mode

This query would be,

Name of our favorite films filtered by rating
Let's keep only the names of our favorite films

VHS in a film store

Did you have VHS at home? Photo by Delaney Van on Unsplash

3. Any

The Any method checks if a collection has at least one element matching a condition. Unlike Where and Select, Any doesn't return a new collection, but either true or false.

Let's see if we have watched movies with a low rating.

var hasBadMovies = movies.Any(movie => movie.Rating < 2);
Enter fullscreen mode Exit fullscreen mode

This query would be,

At least one film with a low rating
Do we have films with a low rating?

4. GroupBy

The GroupBy method returns a collection of "buckets" organized by a key. Also, GroupBy transforms each bucket of elements.

Let's count the films with the same rating.

var groupedByRating = movies.GroupBy(movie => movie.Rating,
                                    (rating, movies) => new
                                    {
                                        Rating = rating,
                                        Count = movies.Count()
                                    });
Enter fullscreen mode Exit fullscreen mode

The second parameter of the GroupBy is a Func with the grouping key and the elements of each group as parameters.

This query would be,

Count of films grouped by rating
Let's count the films with the same rating

5. First & FirstOrDefault

The First and FirstOrDefault methods return the first element in a collection or the first one matching a condition. Otherwise, First throws an exception, and FirstOrDefault returns the default value of the collection type.

Let's find the oldest film we have watched.

var oldest = movies.OrderBy(movie => movie.ReleaseYear)
                   .First();
Enter fullscreen mode Exit fullscreen mode

This query would be,

Oldest film we have watched
Let's find the oldest film we have watched

Voilà! These are five LINQ methods I use most often: Where, Select, Any, Group, and FirstOrDefault. Of course, LINQ has more. But, you will get your back covered 80% of the time with these five methods.

To learn about LINQ and other methods, check my quick guide to LINQ on my blog. All you need to know to start working with LINQ, in 15 minutes or less.

Hey! I'm Cesar, a software engineer and lifelong learner. If you want to support my work, check my Getting Started with LINQ course on Educative where I cover these and other LINQ methods in depth.

Happy LINQ time!

Top comments (1)

Collapse
 
kaylumah profile image
Max Hamulyák

very nice to see these concepts in pictures, looking forward to reading rest of your series