LINQ

LINQ (Language Integrated Query) is uniform query syntax in C# and VB.NET to retrieve data from different sources and formats.

Fluent Validation in ASP.Net MVC

In this article, we will explore how to validate Asp.net MVC Application Using Fluent Validation. If you want to do…

3 years ago

Different Between SelectMany And Select In LINQ

A Select operator is used to select values from the collection. A SelectMany operator is used to select values from…

3 years ago

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

Server Side Pagination Using DataTable In .NET Core

Today, we will learn about how to create server side DataTable with it's full functionality like searching, sorting and pagination.…

4 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