In LINQ, Method Syntax is used to call the extension methods of the Enumerable or Queryable static classes. It is also known as Method Extension Syntax or Fluent. However, the compiler always converts the query syntax in method syntax at compile time. It can invoke the standard query operator like Select, Where, GroupBy, Join, Max, etc. You are allowed to call them directly without using query syntax.
Creating first LINQ Query using Method Syntax in C#
- Step 1: First add System.Linq namespace in your code.
using System.Linq;
- Step 2: Next, create a data source on which you want to perform operations. For example:
List my_list = new List(){
"This is my Dog",
"Name of my Dog is Robin",
"This is my Cat",
"Name of the cat is Mewmew"
};
- Step 3: Now create the query using the methods provided by the Enumerable or Queryable static classes. For example:
var res = my_list.Where(a=> a.Contains("Dog"));
Here res is the query variable which stores the result of the query expression. Here we are finding those strings which contain “Dog” in it. So, we use Where() method to filters the data source according to the lambda expression given in the method, i.e, a=> a.Contains(“Dog”).
- Step 4: Last step is to execute the query by using a foreach loop. For example:
foreach(var q in res)
{
Console.WriteLine(q);
}
Example:
using System;
using System.Linq;
using System.Collections.Generic;
class GFG {
static public void Main()
{
List< string > my_list = new List< string >() {
"This is my Dog" ,
"Name of my Dog is Robin" ,
"This is my Cat" ,
"Name of the cat is Mewmew"
};
var res = my_list.Where(a => a.Contains( "Dog" ));
foreach ( var q in res)
{
Console.WriteLine(q);
}
}
}
|
Output:
This is my Dog
Name of my Dog is Robin
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
21 May, 2019
Like Article
Save Article