毕业论文

打赏
当前位置: 毕业论文 > 外文文献翻译 >

ADO.NET结构与概述英文文献和中文翻译(4)

时间:2022-10-30 10:13来源:毕业论文
Language-Integrated Query (LINQ) enables developers to form set-based queries in their application code, without having to use a separate query language。 You can write LINQ queries against various e

Language-Integrated Query (LINQ) enables developers to form set-based queries in their application code, without having to use a separate query language。 You can write LINQ queries against various enumerable data sources (that is, a data source that implements the IEnumerable interface), such as in-memory data structures, XML documents, SQL databases, and DataSet objects。 Although these enumerable data sources are implemented in various ways, they all expose the same syntax and language constructs。 Because queries can be formed in the programming language itself, you do not have to use another query language that is embedded as string literals that cannot be understood or verified by the compiler。 Integrating queries into the programming language also enables Visual Studio programmers to be more productive by providing compile-time type and syntax checking, and IntelliSense。 These features reduce the need for query debugging and error fixing。 

For more information, see Introduction to LINQ。 Also see the LINQ General Programming Guide, which contains detailed information about how to use LINQ technologies。

There are three separate ADO。NET Language-Integrated Query (LINQ) technologies: LINQ to DataSet ,LINQ to SQL, and LINQ to Entities。 LINQ to DataSet provides richer, optimized querying over the DataSet and LINQ to SQL enables you to directly query SQL Server database schemas, and LINQ to Entities allows you to query an Entity Data Model。 

Transferring data from SQL tables into objects in memory is often tedious and error-prone。 The LINQ provider implemented by LINQ to DataSet and LINQ to SQL converts the source data into IEnumerable-based object collections。 The programmer always views the data as an IEnumerable collection, both when you query and when you update。 Full IntelliSense support is provided for writing queries against those collections。 

The following diagram provides an overview of how the ADO。NET LINQ technologies relate to high-level programming languages and LINQ-enabled data sources。

The following sections provide more information about LINQ to DataSet, LINQ to SQL, and LINQ to Entities。

LINQ to DataSet 

The DataSet is a key element of the disconnected programming model that ADO。NET is built on, and is widely used。 LINQ to DataSet enables developers to build richer query capabilities into DataSet by using the same query formulation mechanism that is available for many other data sources。 For more information, see LINQ to DataSet。

LINQ to SQL 

LINQ to SQL is a useful tool for developers who do not require mapping to a conceptual model。 By using LINQ to SQL, you can use the LINQ programming model directly over existing database schema。 LINQ to SQL enables developers to generate 。NET Framework classes that represent data。 Rather than mapping to a conceptual data model, these generated classes map directly to database tables, views, stored procedures, and user-defined functions。 

With LINQ to SQL, developers can write code directly against the storage schema using the same LINQ programming pattern as in-memory collections and the DataSet, in addition to other data sources such as XML。 For more information, see LINQ to SQL。 

 LINQ to Entities 

Most applications are currently written on top of relational databases。 At some point, these applications will need to interact with the data represented in a relational form。 Database schemas are not always ideal for building applications, and the conceptual models of application are not the same as the logical models of databases。 The Entity Data Model is a conceptual data model that can be used to model the data of a particular domain so that applications can interact with data as objects。

Through the Entity Data Model, relational data is exposed as objects in the 。NET environment。 This makes the object layer an ideal target for LINQ support, allowing developers to formulate queries against the database from the language used to build the business logic。 This capability is known as LINQ to Entities。。 ADO.NET结构与概述英文文献和中文翻译(4):http://www.youerw.com/fanyi/lunwen_101258.html

------分隔线----------------------------
推荐内容