In this article, I am going to discuss the Different Ways to write LINQ Query i.e. Linq Query Syntax and Linq Method Syntax with examples. Please read our previous article where we discussed the Architecture of LINQ i.e. how LINQ works. In this article, we are going to discuss the following pointers.

- Different things required to write a LINQ Query?
- What is a Query?
- What are the different ways to write a LINQ query?
- Example of using both Method and Query Syntax.
What are the different things required to write a LINQ Query?
In order to write a LINQ query, we need the following three things
- Data Source (in-memory objects, SQL, XML)
- Query
- Execution of the query
What is a Query?
A query is nothing but a set of instructions which is applied on a data source (i.e. in-memory objects, SQL, XML, etc.) to perform certain operations (i.e. CRUD operations) and then tells the shape of the output from that query. That means the query is not responsible for what will be the output rather it is responsible for the shape of the output. Means what is going to return from that query whether it is going to return a particular value, or a particular list or an object.
Each query is a combination of three things. They are as follows:
- Initialization (to work with a particular data source)
- Condition (where, filter, sorting condition)
- Selection (single selection, group selection or joining)
What are the different ways to write a LINQ query?
We can write the LINQ query in three different ways. They are as follows
- Query Syntax
- Method Syntax
- Mixed Syntax (Query + Method)
Note: From the performance point of view there is no difference between the above three approaches. So, which you need to use, it totally depends on your personal preference. But the point that you need to keep in mind is, behind the scene, the LINQ queries written using query syntax are translated into their lambda expressions before they are compiled.
LINQ Query Syntax:
This is one of the easy ways to write complex LINQ queries in an easy and readable format. The syntax for this type of query is very much similar to SQL Query. If you are familiar with SQL queries then it is going to be easy for you to write LINQ queries using this query syntax. The syntax is given below.
LINQ Method Syntax:
Method syntax becomes most popular now a day to write LINQ queries. It uses a lambda expression to define the condition for the query. Method syntaxes are easy to write simple queries to perform read-write operations on a particular data source. But for complex queries Method syntaxes are a little hard to write as compared to query syntax.
In this approach, the LINQ query is written by using multiple methods by combining them with a dot (.). The Syntax is given below:
LINQ Mixed Syntax:
This is the combination of both Query and Method syntax. The syntax is given below.
Let us understand how to use Query Syntax, Method Syntax, and Mixed Syntax with examples.
Example: We have an integer list and we need to write a LINQ query which will return all the integers which are greater than 5. We are going to create a console application.
Example Using Query Syntax:
Now run the application and it will display the values 6 7 8 9 10 as expected in the console window. Let us understand what we did in the above code.
Example Using Method Syntax:
Let us rewrite the same example using LINQ Method Syntax.
Now run the application and you will get the output as expected. Let us have a look at the following diagram to understand Method Syntax.
Example Using Mixed Syntax:
Let us change our requirements. First, we need to filter the list where the value is greater than 5 and then we need to calculate the sum.
Now run the application and you will see the output as expected. Let us understand what we did in the above code by looking at the following image.