This repository was archived by the owner on Jun 4, 2019. It is now read-only.

Description
I think in some cases it is handy to manage transactions from outside of DAO objects, ex:
class MyBusinessLogic {
def doSomething = {
inTransaction {
dao1.create
dao2.update
...
}
}
I have implemented this functionality for prequel (in a separate class, without patching in fact) and can share it here, Sorry, I am not experienced with github yet, so I could send it to email or post here, just let me know.