Linq

Joins In Linq

Like SQL LINQ also provides join. LINQ joins are used to fetch data from one or more data sources based…

3 years ago

How to Convert DataTable to List In ASP.NET MVC

In this article, we will learn how to convert a DataTable to a List in ASP.NET MVC.

3 years ago

LINQ Partition Operators

In Linq, partition operators are used to dividing the collection/list into two parts. There are various partition operators like Take(),…

5 years ago

LINQ Sorting Operators

In Linq, sorting operators are used when we have to change the sequence or order of the data. i.e. Ascending…

5 years ago

LINQ Where Clause Filtering Operator

Linq filtering operators are used to filter the collection or list. Filtering operator specifies the statement that should only take…

5 years ago

LINQ Projection Operators (Select, SelectMany)

The Linq projection operator is used to retrieve one or more from the tables. Its like select syntax of the…

5 years ago

LINQ Aggregate Function

Today, we will learn about Linq aggregate functions. Linq provides various aggregate functions like Min(), Max(), Sum(), Count(), Average(), Aggregate().

5 years ago

LINQ Lambda Expressions

In Linq, a function without a name is known as Lambda expression. It a more clear and makes the syntax…

5 years ago

LINQ Syntax (Query Syntax & Method Syntax)

Here, we will learn about Linq query syntax and Linq method syntax with examples. The main advantage of Linq is…

5 years ago

LINQ Introduction – What is LINQ & Why We Use LINQ

Here, we will learn about LINQ with its advantages and disadvantages and whether to use LINQ in our applications or…

5 years ago