views:

37

answers:

1

Hi guys,

As I know ruby on rails are using Active Record with table per class strategy.

I wonder if it possible to use Rails in domain driven design style, which require ORM which has more level of abstraction of data model, such as NHibernate.

Best regards, Alexey Zakharov

+1  A: 

You might want to check out http://datamapper.org/

It works with Ruby and Ruby on Rails, and has support for replacing ActiveRecord in Rails 3 here: http://github.com/datamapper/dm-rails

Steven Soroka