You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 4, 2019. It is now read-only.
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.