Linq
LINQ : Language-Integrated Query is a powerful query language introduced with .Net 3.5 & Visual Studio 2008. LINQ (Language Integrated Query) is uniform query syntax in C# and VB.NET to retrieve data from different sources and formats such as collections, ADO.Net DataSet, XML Docs, web service and MS SQL Server and other databases. LINQ queries return results as objects. Refrences: https://www.tutorialsteacher.com/linq/why-linq Advantages of LINQ Familiar language: Developers don’t have to learn a new query language for each type of data source or data format. Less coding: It reduces the amount of code to be written as compared with a more traditional approach. Readable code: LINQ makes the code more readable so other developers can easily understand and maintain it. Standardized way of querying multiple data sources: The same LINQ syntax can be used to query multiple data sources. Compile time safety of queries: It provides...