LINQ (Language Integrated Query) is uniform query syntax in C# and VB.NET to retrieve data from different sources and formats.
In this article, we will explore how to validate Asp.net MVC Application Using Fluent Validation. If you want to do…
A Select operator is used to select values from the collection. A SelectMany operator is used to select values from…
Like SQL LINQ also provides join. LINQ joins are used to fetch data from one or more data sources based…
In this article, we will learn how to convert a DataTable to a List in ASP.NET MVC.
Today, we will learn about how to create server side DataTable with it's full functionality like searching, sorting and pagination.…
In Linq, partition operators are used to dividing the collection/list into two parts. There are various partition operators like Take(),…
In Linq, sorting operators are used when we have to change the sequence or order of the data. i.e. Ascending…
Linq filtering operators are used to filter the collection or list. Filtering operator specifies the statement that should only take…
The Linq projection operator is used to retrieve one or more from the tables. Its like select syntax of the…
Today, we will learn about Linq aggregate functions. Linq provides various aggregate functions like Min(), Max(), Sum(), Count(), Average(), Aggregate().