• Javascript
  • Python
  • Go

Performing IN or CONTAINS in LINQ with Lambda expressions

In the world of programming, LINQ (Language Integrated Query) has become an essential tool for querying data from various sources. Whether y...

In the world of programming, LINQ (Language Integrated Query) has become an essential tool for querying data from various sources. Whether you are working with databases, XML files, or collections, LINQ provides a unified approach to query and manipulate data. One of the most commonly used operators in LINQ is the IN or CONTAINS operator, which allows us to check whether a specified value exists in a collection. In this article, we will explore how to use the IN or CONTAINS operator in LINQ with Lambda expressions.

To understand the IN or CONTAINS operator, let's first take a look at the syntax:

- IN: Checks whether a specified value exists in a collection.

- CONTAINS: Checks whether a specified value is contained in a string or a sequence of characters.

Now, let's dive into some examples to see how we can use these operators in LINQ.

Suppose we have a list of employees and we want to filter out the employees who are part of the sales department. We can achieve this by using the IN operator in LINQ. Here's how the code would look like:

```csharp

List<Employee> employees = new List<Employee>()

{

new Employee() { Name = "John", Department = "Sales" },

new Employee() { Name = "Mary", Department = "Marketing" },

new Employee() { Name = "David", Department = "Sales" },

new Employee() { Name = "Sarah", Department = "HR" }

};

var salesEmployees = employees.Where(emp => emp.Department == "Sales");

```

In the above code, we are using the Where() method to filter out the employees whose department is "Sales". Here, the IN operator is used implicitly as we are checking for an exact match. The result of this query would be two employees, John and David.

On the other hand, if we want to check whether a string contains a specific word or character, we can use the CONTAINS operator in LINQ. Let's say we want to find all the employees whose name contains the letter "a". Here's how we can do it using the CONTAINS operator:

```csharp

var employeesWithA = employees.Where(emp => emp.Name.Contains("a"));

```

In the above code, we are using the Contains() method to check if the employee's name contains the letter "a". The result of this query would be three employees, John, Mary, and Sarah.

Now, let's explore how we can achieve the same results using Lambda expressions. Lambda expressions are a concise way of writing anonymous functions and are widely used in LINQ. Here's how we can use Lambda expressions with the IN or CONTAINS operator:

- IN:

```csharp

var salesEmployees = employees.Where(emp => emp.Department == "Sales");

```

- CONTAINS:

```csharp

var employeesWithA = employees.Where(emp => emp.Name.Contains("a"));

```

In both these examples, we are using the lambda operator (=>) to define our query. The lambda operator is followed by the parameter (emp) and then the condition to be checked. This gives us a more concise and readable way of writing our queries.

In addition to the IN and CONTAINS operators, LINQ also provides other useful operators like ANY and ALL, which can be used to check if any or all items in a collection satisfy a certain condition. These operators, along with the IN and CONTAINS

Related Articles

LINQ to SQL "NOT IN" query

LINQ to SQL is a powerful tool for querying databases in .NET applications. It allows developers to write queries in C# or VB.NET code, whic...

Inner Join Syntax in LINQ to SQL

When working with databases, the ability to retrieve and manipulate data is crucial. In LINQ to SQL, the Inner Join syntax is a powerful too...