Embed presentation
Download to read offline









LINQ is a querying language that allows querying of any data source, including collections of objects, databases, and XML files. It works by querying data sources that implement the IEnumerable<T> interface. LINQ can be used for in-memory data (LINQ to Objects), XML data (LINQ to XML), databases (LINQ to SQL, LINQ to Entities), and datasets (LINQ to DataSet). The architecture of LINQ includes language enhancements that enable querying, execution against different data sources, and type relationships between objects.







