Is there a ORM that would

  • leave my entities classes clean, withouth any attributes for properties and classes
  • would not be ActiveRecord pattern so it should not have entity.Save/Delete etc.

optional: able to execute stored procedures and parse the result into entityies

link|improve this question

1  
Are you targeting any specific platform/language/framework? E.g. .NET, Java? – o.k.w Dec 31 '09 at 7:11
1  
Yes, i'm targeting .NET – Chuck Norris Dec 31 '09 at 7:14
feedback

2 Answers

up vote 4 down vote accepted

Sounds like NHibernate is what you need. This uses a mapping file (in XML) to map the properties of classes to the database. Entities are managed through a SessionManager interface.

Documentation is here.

A mapping file can also map from a stored procedure to your persistent objects. Details here.

link|improve this answer
my thoughts exactly. – Frederik Gheysels Dec 31 '09 at 7:53
1  
+1, but see my answer for additional comments. – Mark Seemann Dec 31 '09 at 9:36
1  
Those links are to an older (1.2) version of NHibernate. More recent documentation is here: nhforge.org/doc/nh/en/index.html – Michael Maddox Dec 31 '09 at 12:32
1  
Thanks Michael - I've edited my answer. – Jeremy McGee Dec 31 '09 at 12:56
1  
Agree. Mapping can however also be done with attributes (which isn't POCO and not what the asker wanted), and with C# (fluentnhibernate.org). – Martin R-L Jan 4 '10 at 0:03
show 1 more comment
feedback

What you are looking for is commonly referred to as Persistence Ignorance. It seems that the preferred framework for that is NHibernate, so I second Jeremy McGee's answer.

For completeness' sake I'd like to point out Microsoft's Entity Framework will get Persistence Ignorance in the next version (.NET 4) - they call it POCO support. Whether it will actually turn out to be any good remains to be seen...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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