vote up 7 vote down star
11

I'm writing an application from scratch, I am not pretty sure which one to use.

  • Microsoft Entity Framework
  • NHibernate
  • Gentle.NET
  • Other

Any guidance or opinions on the advantages and disadvantages of each would be helpful.

flag

18 Answers

vote up 9 vote down

Off the top of my head:

  • NHibernate - Which I have experience using and I feel is best for most purposes, but then I'm biased. Open source port of Java's Hibernate.
  • LLBLGen - Full fleged ORM by Frans Bouma
  • Subsonic - open source project led by Rob Connery. Great for smaller scale projects, at least until LINQ to SQL came along (very subjective opinion!).
  • Microsoft Entity Framework
  • ObjectMapper.NET
link|flag
Best advice for using an ORM, use any well matured and supported one that you like and have active user communities. The above list are the big ones worth considering. +1 NHibernate – Brendan Kowitz Jun 4 at 23:50
vote up 4 vote down

NHibernate allows to use POCO files which makes reuse of your existing object model very easy. it als has some advanced features like several caching levels, experimental linq support, etc...

link|flag
and its open source – Roundcrisis Apr 6 at 8:51
In NHibernate you have to adjust your object model when you want lazy-load. Your properties must be virtual. – Patrick Peters May 6 at 10:01
vote up 4 vote down

Hi,

LightSpeed is very good and we have had success with it in the past.

I would not reccomend Linq to SQL as it is tied to SQL Server and only supports Table Per Hierarchy.

Entity Framework or NHibernate if you cannot dish out the extra cash for lightspeed. NHibernate has a learning curve though while with EF you are good to go. NHibernate supports POCO objects, so if you already have an objet model in place, NHibernate is the way to go.

link|flag
Well Linq to sql is currently tied to MS-SQL but you can right other providers for it can you not? maybe the mysql guys might include it in the next .NET Connector :P – Sekhat Oct 30 '08 at 9:15
Lightspeed can choose to provide its own LINQ provider if it could. – Jon Limjap Oct 30 '08 at 9:18
vote up 4 vote down

We use NHibernate, mainly because:

  • It supports other databases, in our case Oracle. Linq to SQL and EntityFramework support only SQLServer out of the box
  • Use of POCO objects. You don't need to put any attributes or other markup inside your class.
  • Many side projects. There is for example one project (Fluent NHibernate) that replaces the mapping xml file with a class implementation, or an Linq implemenation for Nhibernate.
link|flag
LINQ to SQL only supposts MS SQL Server, but Entity Framework works with most databases you can access via ADO.NET. – Chris Charabaruk May 14 at 22:43
vote up 3 vote down

$$$ Ideablade DevForce
[http://www.ideablade.com/DevForceClassic/DevForceClassic_overview.html]

$ DevExpress XPO (Express Persistence Objects)
[http://www.devexpress.com/Products/NET/ORM/]

Both of these cost money. In their proportions, each is worth what you'll pay.

If you are broke and have more time than money, try SubSonic.
[http://subsonicproject.com/]

Ideablade is the enterprise and n-tier tool, capable of creating entities even from services, as well as views and stored procedures.

DevExpress XPO is quite robust.

Both Ideablade an DevExpress tools easily connect as data sources to controls Microsoft and 3rd party tools.

SubSonic seems to have many comparable characteristics of the expensive tools, but any new user will "pay" days and weeks before they learn it. The documentation exists of trial and error, syntax help, and forums on the web site. Compared to the other tools, it's like working in the dark.

Sometimes "free" is very expensive.

If you have a client who is paying for your time, IdeaBlade can be worth a month of work. DevExpress can be worth weeks. I'm sure SubSonic is good, but without a trusted guide to teach you, it will be a long time before those efficient benefits are derived.

Good luck on your choices. They will be like a crown or an albatross.

link|flag
vote up 3 vote down

Since nobody mentioned it yet, I just want to throw in Genome.

I have worked on a "big" successful project (multi-million, several years, >10 developers) for which we chose Genome as persistence solution.

Of course this has been some years ago, when ORM in the .NET-space was a relative new thing.

I was responsible for the data-access of the project, and Genome left a very neat impression. Today I am working a lot with Hibernate in the Java-space, and from a developer standpoint Genome seemed way more intuitive (even though it has a different architectural philosophy and therefore cant be compared directly).

Genome is a commercial product. Genome has evolved a lot. Today it claims to be fully LINQ-compliant. If I would be in a position of evaluating a ORM-solution for .NET I would definitely look at Genome again.

Another commercial product, not mentioned yet is Telerik Open Access (formerly Vanatec Open Access).

link|flag
vote up 2 vote down

I've had good experiences with LightSpeed.

link|flag
vote up 2 vote down

I've been using NHibernate (and Active Record) for some time, and I must admit it has it's flaws. It seems like the architecture is quite old making new features like LINQ support quite hard to implement. However, the team behind is very fast to answer any questions and the community is very supportive.

Recently I have been working with LINQ-to-SQL and it too has it's flaws. Of course the two can't really be compared, but for what it's being used for, I can see that LINQ-to-SQL resembles Active Record quite a lot (perhaps because of the fact that the key developer behind Active Record actually developed LINQ-to-SQL).

What I don't like about LINQ-to-SQL is that it's so hard coupled and "almost" impossible to test/mock. Furthermore the part of not having complete control over the domain model also makes me a bit uncomfortable. At the moment I'm doing a lot of mapping between the actual domain model and the LINQ-to-SQL model. At this point NHibernate really shines. Having very little restriction put on the actual domain model makes it a very powerful tool, but apparently this "restriction" makes a lot of people upset blaming the tool for not being completely PI - but neither is Entity Framework, LINQ-to-SQL, iBatis, OpenAccess or any other ORM for that matter.

I have a lot of ORM's to try out, but so far NHibernate have never failed me (and if it did, I'd know that any other ORM would too).

link|flag
vote up 1 vote down

Another open source option, by the way: Subsonic

http://subsonicproject.com/

link|flag
vote up 1 vote down

We use EntitySpaces with MyGeneration for code generation and find it to be great.

link|flag
vote up 1 vote down

I've tried a few (even written one) and found nHibernate to be by far the best and the easiest to use in real world situations (where linq to sql falls flat on it's face).

link|flag
vote up 1 vote down

We use iBatis. It is simple and lightweight enough to do the job without bringing too much complexity and overhead to the project.

link|flag
vote up 1 vote down

I'm suprised that no one mentioned the best ORM out there:

Your own!

The best thing about Your own! ORM is that you can implement something interesting that you see in other ORM tools. I do this approx once a year. And if something bothers you, you can either ignore it or change it. The choice is yours and only yours.

link|flag
vote up 0 vote down

In answer to Bernie: I assume you are meaning Linq to SQL. That is mainly meant for RAD purposes, on the other side Entity Framework is probably what MS intends for enterprise development.

But I would also strongly consider going for Microsofts stuff, unless there was some features in the existing frameworks that are needed for the project at hand.

link|flag
I would strongly consider going the most stable and correct tool for the job. Microsoft != best choice to use. – Sekhat Oct 30 '08 at 9:16
I also suggest going with NHibernate at the moment. I'm developing a project with NH at the moment and it works absolutely perfectly – Tigraine Oct 30 '08 at 11:08
vote up 0 vote down

I use the Flixon Site Generator extensively. This has similarities with EF as it creates a rich domain model (including many-many relationships) and is structured as loosley coupled layers (UI/BLL/DAL) etc... basically, you just point at your SQLServer (2005 and above) database and hit the OK button - that's simplicity for me!! As it's patterns based, it's pretty simple to get to grips with the architecture as well.

There's info and a version to be found here:

http://forums.asp.net/t/1318180.aspx

link|flag
vote up 0 vote down

I have a good experience with LLBL, its easy to configure and very easy to code with.

Also you can find list of most known .net ORM tools

link|flag
vote up 0 vote down

Here are opinions on DevExpress XPO: http://stackoverflow.com/questions/31559/any-thoughts-on-devexpress-xpo-orm-package I personally would choose NHibernate.

link|flag
vote up 0 vote down

EntitySpaces http://www.entityspaces.net

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.