my team is starting a new project on asp.net mvc, and we are wondering what technology for data access to use, how do you think which one is the best, who has the best performance ? which one is easier to use and to maintain ?
|
|
My preference is LLBLGenPro - a really great ORM that just works like you'd expect. Its not based on configuration like entity framework or nhibernate, it generates your DAL based on your db (with much flexibility through their tools). |
|||
|
|
|
LINQ2SQL is probobly easiest to use. Entity Framework provides great extensability and the future release will contain alot of improvements. One key rule for performance: write code that is easy to maintain, read and distribute; if it's to slow - optimize! I think that the difference in performance between the ORMs today is bareley noticable, so you should pick the one that feels most comfortable and efficent to work with. |
|||
|
|
|
Entity Framework has better mapping of relationships than linq2sql (for example, it has multiple-multiple relationships). I haven't used the other two, but I used Hibernate in Java and it was pretty straightforward to use. |
|||
|
|
This blog post compares various data technologies for .NET in various aspects (performance, maintainability, testability etc.). Might be of some help to your decision making process. |
|||||||||
|
|
I face same dilemma. LINQ2SQL will give you more flexibility and immediate control over data access, however Entity Framework is the "enterprise" solution. I am currently trying this - SubSonic and look very promising. |
|||
|
|
|
To compare ORMs - take a look on http://ormbattle.net/ |
|||||||||||||
|
|
My choice is Devart LinqConnect (http://www.devart.com/linqconnect/). This product as easy to use as LINQ to SQL (and even is compatible with it) and at the same time provides advanced ORM features like Entity Framework. I prefer their Visual Designer and their ORM features:
|
|||
|
|
|
I've been using Entity Framework (Code first) and nHibernate for some time now, and I much prefer nHibernate, specifically fluent. It seems to give me a lot more flexibility in how I map my objects to the database. Additionally, it gives much greater control over lazy loading and cascading actions on the objects. |
|||
|
|