We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
domain.list(),domain.findAll() don't work
my code :
1、build.gradle compile 'org.grails.plugins:gorm-logical-delete:2.0.0.M2' 2、domain class class Demo implements Serializable, LogicalDelete<Demo> { String demo static constraints = { } } 3、controller def index() { render Demo.list() as JSON }
compile 'org.grails.plugins:gorm-logical-delete:2.0.0.M2'
class Demo implements Serializable, LogicalDelete<Demo> { String demo static constraints = { } }
def index() { render Demo.list() as JSON }
4、run result
The text was updated successfully, but these errors were encountered:
No branches or pull requests
domain.list(),domain.findAll() don't work
my code :
1、build.gradle
compile 'org.grails.plugins:gorm-logical-delete:2.0.0.M2'
2、domain class
class Demo implements Serializable, LogicalDelete<Demo> { String demo static constraints = { } }
3、controller
def index() { render Demo.list() as JSON }
4、run result
The text was updated successfully, but these errors were encountered: