Вопросы по теме 'gorm-mongodb'

Встроенные документы Grails Mongodb? Ошибка?
У меня есть эта простая модель: abstract class Info { ObjectId id Date dateCreated Date lastUpdated } class Question extends Info { String title String content List<Answer> answers = [] static embedded =...
1075 просмотров

Как разбить на страницы сложные запросы mongoDB в Grails?
У меня есть три доменных класса Author, Comment и Book: class Author { String name static hasMany = [books: Book, comments: Comment] } class Book { static belongsTo = [author: Author] static hasMany = [comments: Comment] } class Comment { static...
607 просмотров
schedule 10.04.2022