vote up 8 vote down star
5

What sort of Object Relational Mapping (ORM) systems do you use on various projects?

What scale is the project?

What features do you use and look for in an ORM?

flag

71% accept rate

17 Answers

vote up 16 vote down check

Small\Medium Projects: Subsonic

Its really realy quick to get up and running with it, and has well developed querying built into it.

Enterprise Projects: NHibernate

Makes it much easier to seperate your domain model from your data model.

Ultimately though I still find that there are many occasions where you still have to bend to the will of the database, even using NHibernate.

In my opinion the only true way it to totally seperate your domain Model from your database model is to write your own DTOS (essentially POCOs for passing data around), and then map them back to your ORM of choice in your data layer.

link|flag
If I have a layered application, I write my own domain model classes and map them to SubSonic generated classes. SubSonic represents the database structure and my domain classes represent the business entities (i.e. a domain class often maps to multiple ActiveRecord classes). – Pawel Krakowiak Mar 5 at 9:33
vote up 1 vote down

I started using EntitySpaces about two years ago on a small project. It is extensible, generated code that maps objects to your db schema. It's cheap, easy to use, and their support forum is a great source of help from newbie to expert.

http://www.entityspaces.net

link|flag
vote up 5 vote down

For a medium (250K line) .NET client/server project,

We've tried XPO (eXpress Persistent Objects) commercial ORM and found it to have some inefficiencies. In particular, lots of SQL commands were generated and executed for rather simple requests, ones which we could easily hand-code and bring down significantly. We sent reports of these problems to the developer, but it never got fixed. Instead, we we greeted with "send us your database and a repro test project".

We've since switched to DB4O, an object oriented database. Rather than SQL tables, you store your objects directly inside a single file. DB4O provides very natural query syntax:

// Find all items with Text == "Hello".
var results = Db4oDatabase.Query<Items>(el => el.Text == "Hello");

I understand the latest version has a LINQ provider as well. Performance has been great, much better than we ever got using SQL directly or an ORM. You do have to watch out for activation issues during queries.

link|flag
@Judah - interesting in your post as I'm just looking into XPO. Could you say more about the perf issues you had with XPO? I'm looking at a single user, mass market app with an embedded DB. I've looked at DB4O, but they were far too expensive to consider (unfortunately, as it looked very good). – Sean Kearon Oct 16 '08 at 22:47
vote up 5 vote down

+1 for NHibernate. Great support, great resources (the reference guide is good, the new manning book is good). Proven. Flexible. Transparent.

link|flag
vote up 0 vote down

We tried to use Gentle.Net for small, medium projects using Oracle soon we realized that it was too slow, that could be maybe because of the architecture of the company that we develop for, so we developed our own small ORM, it worked really well compared to the Gentle speed and since our projects were not that sophisticated it worked with the most simple features:

  • No Configuration files: I think one of the most important features in a .Net ORM is that you can use Reflection instead of configuration files, I find it more straight forward and clean.
  • MultiDB: With a couple of plugins you should be able to extend the ORM to any DB.
  • Primary Keys, Not Null fields: I think these are the most important tags a field has to have, of course primary keys should support autonumber fields.

It took us (meaning me) like two or three days to develop, and a couple of more to substitute our ORM for Gentle in one of the projects.

That's as far as I can go now, maybe I will be updating this after refreshing the sources of our ORM, but let me know which other features do you think are serious or dead important.

link|flag
vote up 2 vote down

We started to look at DiamondBinding (www.dunnchurchill.com). It's based on a number of open source projects, including NHibernate, but it has a nice VisualStudio add-in which helps with the code generation. On the few occasions that I had to e-mail them, technical support was also pretty good.

The main problem I found was the lack of documentation / sample code, etc. I think it's a relatively young product, though, and they are improving the situation.

More recently we've been looking into Microsoft's LINQ-to-SQL, and I must say I'm quite impressed. Not only do you get the advantage of being able to write queries directly in the source code (even if it is some crazy variation of SQL), but it also handles all of the ORM, too. Because it's integrated with the language, you get strongly typed queries which should cut down on runtime error possibilities.

There are a good series of tutorials on LINQ-to-SQL here.

Microsoft also have another offering which is currently in beta - the Microsoft Entity Framework. This seems (in some ways) to be LINQ-to-SQL's big brother. I haven't had a chance to play with this much, but it looks quite promising.

All in all, for our next few projects, we're going to be using LINQ-to-SQL!

Good luck!

link|flag
vote up 4 vote down

LightSpeed is mine - but I could be considered biased.

link|flag
vote up 2 vote down

Another vote for EntitySpaces here. Started with their free dOOdads after a recomendation and eventual took the decision to upscale to EntitySpaces for the latest project. Well worth the money.

link|flag
vote up 2 vote down

I've used CastleProject's ActiveRecord.

It is built on top of NHibernate, but it handles the complexity of all of the mapping configuration that comes with NHibernate.

link|flag
vote up 0 vote down

We're about to deploy a rather large app on NHibernate. Was my first time using such a thing as an ORM and am happy that I have had the chance to use it. I thought it was going to be a performance nightmare, but we're up to 5000 CCU with some intensive queries. We've had to do some tuning and work out some kinks to get our 2nd level cache right, but it seems to be doing well.

I would like to give DLINQ a try on my next project. I had read some cool stuff about it over at Scott Gu's blog. Too bad my shop doesn't want to give VS2K8 along with SQL Server 2K8 or LINQ.

link|flag
vote up 6 vote down

NHibernate +1.

Just remember to keep a clean divide between your object model and the underlying ORM implementation. Ensure your object model doesn't know about the ORM layer in case you ever need to switch ORM in the future and you'll go far.

link|flag
What could be a reason to switch the ORM you would use ? Although I find it important to keep a separation between model & ORM, I can't think of any reason why you would change the ORM implementation you'll use inside a single project ... – Frederik Gheysels Sep 14 at 14:20
There are likely few reasons beyond commercial pressure or management dictat. Even so, keeping the ORM out of the model ensures a clear separation of concerns. – DavidWhitney Sep 15 at 9:25
vote up 2 vote down

We have been using IdeaBlade for the past 2 years. It creates Business objects from a Database. One nice feature, we use, is creating relationships across databases. They also have their own query language, which was strongly typed but a little confusing. This is going to be obsolete in the near future as they are moving towards supporting LINQ as their query language, which is a good choice on their part. I have not used any of the other ORM so I cannot compare it against them.

link|flag
vote up 0 vote down

If you are going to buy one, EntitySpaces is wonderful. NHibernate is ok, but it's got those rediculous XML config files that drive me nuts. There is no reason to use XML when you could generate compilable code instead, thus removing the relection cost and runtime errors with XML syntax/sync issues. Still, I would vote for NHibernate if you don't care about the XML files.

link|flag
vote up 0 vote down

Another vote here for EntitySpaces. I've done a couple of projects using the framework, and have enjoyed good performance, good maintainability, and ease of coding.

link|flag
vote up 2 vote down

I have been using LlblGen Pro since 2003. Great Linq provider. Great technical support.

link|flag
vote up 1 vote down

There is a fundamental difference between SubSonic and Castle ActiveRecord.

They are both ORM's that use the ActiveRecord pattern, but SubSonic takes a buttom-up approach generating classes based on the database schema, while Castle is top-down generating the schema from attributes in the classes.

I like the attribute approach best. One can also depart from the ActiveRecord pattern and use NHibernate directly and generate the bindings with attributes.

link|flag
vote up 1 vote down

HI!! I use EntitySpaces , the last release 2009 is wonderfull. Nhibernate I don“t like it work with xml mapping-files and have slow performance.

link|flag

Your Answer

Get an OpenID
or

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