tircnf
tircnf
@monetschemist -- Just ran into this same problem today. We were trying to have a pageable search and use the same detachedCriteria for both the list and the count, but...
This issue still exists in grails 5.1.1 ``` Domain.withNewSession { Domain.get(1) // load some domain object into the new session. service.anyTransactionMethod() // can do nothing. } ``` the service method...
The @DirtyCheck upgrade note is missing from the latest documentation snapshot. I must not be as good of a researcher as @ahlinist, because it required a LOT of struggle and...
gorm adds a method called `getAll()` to domain objects which will fetch every instance. Because there is a no argument version of this method, it also shows up as the...
https://gorm.grails.org/latest/hibernate/manual/index.html section 8.1.9 Make sure and flush the session is flushed inside the closure. ``` //Only the dateCreated property handling will be disabled for only the Foo domain autoTimestampEventListener.withoutDateCreated(Foo) {...
@RxL-Nikhil-Kanyal -- Not really. we haven't upgraded to 6 yet. I think your choices are to either stick with pre-6 grails, wait for the grails team to upgrade the plugin,...
I think the arguments are in the incorrect order. Should it be `gradle runCommand -Pargs="dbm-generate-gorm-changelog changelog.groovy"` @matrei -- Are you saying in that last sentence that there is no way...
I'm using it with the 2017.3 version of intellij.