views:

39

answers:

0

I'm working on extending a framework currently implementing an Active Record pattern. The implementations provides a store/save method on the ActiveRecord class. I guess much of this implementation would be the responsibility of the unit of work implementation, like figuring out when and what object relations to save and so on?

How does this go with a Unit of Work pattern?

Which frameworks for ruby, php, etc. that you know of combines these patterns?