What is Linq?

Linq is the one of the most hottest release from Microsoft. 

Still I don't know what is Linq?. So, I searched in web and I have found a great articles from Saqib Ullah.

This articles covers all the aspects of Linq in each and every way.

Following is the link for that article .
http://geekswithblogs.net/technetbytes/archive/2007/04/30/112129.aspx
 

 

1 Comment

  • LINQ has a great power of querying on any source of data, data source could be the collections of objects, database or XML files. We can easily retrieve data from any object that implements the IEnumerable interface. Microsoft basically divides LINQ into three areas and that are give below.


    * LINQ to Object {Queries performed against the in-memory data}
    * LINQ to ADO.Net
    o LINQ to SQL (formerly DLinq) {Queries performed against the relation database only Microsoft SQL Server Supported}
    o LINQ to DataSet {Supports queries by using ADO.NET data sets and data tables}
    o LINQ to Entities {Microsoft ORM solution}
    * LINQ to XML (formerly XLinq) { Queries performed against the XML source}

Comments have been disabled for this content.