LINQ to XML It is a programming interface that enables us to write the LINQ Queries on XML documents to get the…
linq introduction
-
-
LINQ to Lists/Collection LINQ to Lists/collection means writing the LINQ queries on list or collection. By using LINQ queries on the collection…
-
LINQ sum () Function In LINQ sum() function is used to calculate the sum of the items in collections/lists. Following is the…
-
LINQ to SQL (DBML File) The LINQ to SQL is the component of .NET Framework version 3.5. It provides the run time…
-
LINQ Syntax Before proceeding to the LINQ Query Syntax, we will discuss some basic terms related to LINQ Syntax: The requirement for…
-
LINQ to String Array LINQ to String Array means writing the LINQ queries on string array to get the required data. If…
-
LINQ TAKE PARTITION OPERATOR In LINQ, Take Operator is used to get the specified number of elements in sequence from the list/collection.…
-
LINQ to Strings LINQ to strings is nothing but writing the LINQ queries on String to get the required data from the…
-
LINQ TakeWhile Partition Operator In LINQ, TakeWhile Operator is used to get the elements from the list/collection of the data source as…
-
LINQ ThenBy Descending Operator In LINQ, ThenByDescending operator is used to implement the sorting on multiple fields in the list/ collection, and…