ADO .NET、Entity Framework 和 LINQ to SQL - 我很困惑

发布于 2024-10-06 11:39:29 字数 97 浏览 2 评论 0原文

我需要在脑海中整理这些概念:

实体框架是“新的”ADO .NET 吗?这两个术语有什么区别? LINQ to SQL 与每一项有何关联? 它是实体框架的一部分吗?

I need to arrange those concepts in my head:

Does Entity Framework is "the new" ADO .NET? What is the difference between those two terms? And how does LINQ to SQL related to each one?
Is it part of the entity framework?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

腻橙味 2024-10-13 11:39:29

实体框架是一个 O/R 映射器,构建于 ADO.NET 之上。 LINQ to SQL 是另一种替代 O/R 映射方法,但据我所知,微软将来会采用实体框架,而不是 LINQ to SQL。

Entity Framework is an O/R mapper which is built on top of ADO.NET. LINQ to SQL is another alternative O/R mapping approach, but as far as I know, Microsoft goes for Entity Framework in future rather than LINQ to SQL.

長街聽風 2024-10-13 11:39:29

ADO.NET 是 .NET Framework 的一部分。它由一些可以管理对数据库系统的访问的库组成。

LINQ to SQL 是一种转换器,可让您像对象一样使用数据库表。它是 .NET 3.5 Framework 的一部分。它将翻译 sql 中的对象查询。数据库访问也可以是 ADO.NET。

实体框架(又名ADO.NET实体框架)是一个ORM框架,这意味着它将在实体和数据库之间创建一个层,数据库访问将是ADO。 NET(尽管也可能是其他东西)

ADO.NET is part of the .NET Framework. It consist of some libraries that can manage access to database systems.

LINQ to SQL is kind of a translator that let you use your database tables like objects. It is part of the .NET 3.5 Framework. It will translate object queries in sql. The db access can be ADO.NET as well.

The Entity Framework (aka ADO.NET Entity Framework) is a ORM framework which means that it will create you a layer between entities and database, the db access will be ADO.NET (although it could be something else)

豆芽 2024-10-13 11:39:29

正如许多受访者所说,LINQ 2 SQL 和实体框架已经构建在 ADO.NET 之上。 Microsoft 并未涉足对象关系映射 (ORM) 领域。 LINQ 发布后,他们提出了 LINQ 2 SQL 形式的权宜解决方案。这仅适用于 SQL Server 数据库。

实体框架可以说是微软第一个真正的ORM,它可以与所有SQL兼容的数据库一起工作。如果有人了解 LINQ 2 SQL,那么学习曲线就会非常小。 Microsoft 建议,对于所有未来的数据访问相关解决方案,实体框架应该是理想的选择。

希望这有帮助。

As many of the respondents said already LINQ 2 SQL and Entity Framework are built on top of ADO.NET. Microsoft did not have a presence in Object Relational Mapping (ORM) space. After LINQ was released they came up with a stop gap solution in the form of LINQ 2 SQL. This works only with SQL Server database.

Entity Framework can be said as the first true ORM from MS which can work with all SQL complient databases. The learning curve is very small if someone knows about the LINQ 2 SQL. Microsoft reccomends that for all future data access related solutions Entity Framework should be an ideal choice.

Hope this helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文