The Sorting operator in LINQ arranges the elements of a sequence based on one or more attributs. The different Sorting […]
Updated on Kisan Patel
Projection helps us developer to retrieve desired result from the collection. The Select and SelectMany are the Projection operators used […]
Updated on Kisan Patel
The group operator transforms sequence into a sequence of groups. The group operator can be used to project a result […]
Updated on Kisan Patel
You can use the into keyword to store the results of a select, group, or join statement in a temporary […]
Updated on Kisan Patel
The let keyword in C# allows you to store the result of a sub expression in a variable that can be […]
Updated on Kisan Patel
Filtering, refers to the operation of filtering the result set so that it contains only these elements that satisfy a […]
Updated on Kisan Patel
In .Net Framework, a new syntax, named Lambda expressions, was introduced for anonymous methods. A Lambda expression is an anonymous […]
Updated on Kisan Patel
Extension methods allow an existing type to be extended with new methods, without altering the definition of the original type. […]
Updated on Kisan Patel
The LINQ query only stores query commands. When you define a query in LINQ during runtime, the query does not […]
Updated on Kisan Patel
The .Net Framework provides a number of APIs for working with XML data. LINQ to XML is the API for […]
Updated on Kisan Patel