Language-Integrated Query (LINQ) defines a set of general purpose standard query operators that you can use in .NET Framework 3.0 programming languages. These standard query operators enable you to project, filter, and traverse in-memory collections or tables in a database. Note that the LINQ queries are expressed in the programming language itself, and not as string literals embedded in the application code. This is a significant change from the way most applications have been written on earlier versions of the .NET Framework. Writing queries from within your programming language offers several key advantages. It simplifies querying by eliminating the need to use a separate query language. And if you use the Visual Studio 2008 IDE, LINQ also lets you take advantage of compile-time checking, static typing, and IntelliSense.
LINQ is integrated into various aspects of data access in the .NET Framework, including the DataSet disconnected programming model and existing SQL Server database schemas. This section describes LINQ to ADO.NET, the ADO.NET implementation of LINQ.
The following diagram provides an overview of how LINQ to ADO.NET relates to high-level programming languages, other LINQ technologies, and LINQ-enabled data sources.
- Visual Studio 2008 SDK Version 1.1 - (22/08)
- Tạo bản quyền trong MS Word - (12/08)
- Điều gì làm nên sức mạnh của ngành phần mềm Ấn Độ? - (25/07)
- Laptop mini HP 2133 Mini-Note - (21/07)
- LINQ to ADO.NET Overview - (17/07)
- XML Web Services Basics - (16/07)
- Thủ thuật gỡ USB nhanh và an toàn - (12/07)
- Tối ưu hóa Firefox (phần 2) - (04/07)
- Tối ưu hóa Firefox (phần 1) - (04/07)
- 10 thủ thuật được đọc nhiều nhất trong Gmail - (04/07)





