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
LINQ to SQL is a component of .Net Framework, and is specifically designed for working with SQL Server database. It […]
Updated on Kisan Patel
LINQ has the great ability to query on any source of data that could be collections of objects (in-memory data, […]
Updated on Kisan Patel
Anonymous types defined with var keyword. So A simple anonymous type variable begins with the var keyword, the assignment operator […]
Updated on Kisan Patel
Language-Integrated Query (LINQ) is the name for a set of technologies based on the integration of query capabilities directly into […]
Updated on Kisan Patel