A quick look at the LINQ Architecture
LINQ is a new feature in Visual Studio 2008, extending the capabilities of C# and VB. We can use Language Integrated Query in querying collections, objects, xml and entities.
For as long as an object derives from IEnumerable it can be queried using LINQ,
LINQ can be used in the following ways.
For as long as an object derives from IEnumerable
LINQ can be used in the following ways.
- LINQ to SQL
- LINQ to XML
- LINQ to Object
- LINQ to Entities
.gif)
Comments