在 ASP.NET MVC 中选择数据访问方法
由于我是 ASP.NET MVC 的初学者,我想知道 ASP.NET MVC 的最佳数据访问方法是什么?
As I am a beginner to ASP.NET MVC, I would like to know what are the best data access methods for ASP.NET MVC?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这在某种程度上是主观的。 ASP.NET MVC 不存在最佳数据访问方法。这将取决于您的应用要求和具体需求。有许多不同的 ORM 框架可供您选择,例如 NHibernate、Entity Framework、Linq to SQL 等(如果有一个最好的框架,请参阅 列表不会那么大)。
This is somehow subjective. There's no such thing as best data access method for ASP.NET MVC. This will depend on your application requirements and specific needs. There are many different ORM frameworks you can choose from such as NHibernate, Entity Framework, Linq to SQL, ... (If there was a best framework this list wouldn't be so big).
由于 ASP.NET MVC 完全是关于 TDD 和关注点分离,因此使用任何类型的 ORM 进行数据访问(NHibernate、Entity Framework、LINQ to SQL 等)更为自然。什么类型的 ORM - 取决于您的项目目标和经验。
As ASP.NET MVC is all about TDD and separation of concerns it is more natural to use any type of ORM for data access (NHibernate, Entity Framework, LINQ to SQL etc.). What type of ORM - depends on your project goals and experience.
如果您刚刚学习 MVC,并且可以使用 SQL Server,那么我建议您首先使用 Linq to SQL。稍后您可以引入更强大的 ORM,例如 NHibernate 或 EF。如果您尝试同时处理 MVC 和 NHibernate 之类的东西,您可能会贪得无厌。
If you're just learning MVC, and are ok with SQL server, then I would recommend using Linq to SQL for a start. Later you can then introduce more powerful ORM like NHibernate or EF. If you try to tackle MVC and something like NHibernate at once you will likely bite off more than you can chew.