问题描述
我开始设计新的应用程序,我想知道是LINQ2SQL或Linq2Entities人民的意见,他们认为什么是快速开发更好的技术。
I am starting to design a new application and what I am wondering is peoples opinions on Linq2SQL or Linq2Entities and what they feel is the better technology for rapid development.
我也做了一些研究ADO.net数据服务。
I am also doing some research into ADO.net data services.
推荐答案
我的LINQ的忠实粉丝,如果你符合以下设计要求,SQL:
I'm a big fan of LINQ to SQL if you meet the following design requirements:
- MS SQL Server作为数据库引擎
- RAD开发
- 在1 - 1类映射是所有的需要
我没有做了一大堆的工作与实体框架,但是从我所知道的和我所做的是,从同一个数据库中的LINQ to SQL生成时,它并没有因为良好的性能使用。
I've not done a whole lot of work with Entity Framework but from what I know and what I have done is that it doesn't have as-good performance when generated from the same database as LINQ to SQL uses.
低性能的原因是实体框架的性质,它使用ADO,而不是为你所使用的数据库服务器的特定供应商。
The lower performance is due to the nature of Entity Framework, it uses ADO rather than specific providers for the database server you're using.
这篇关于LINQ的2 SQL或LINQ实体的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!