我正在尝试通过标记列表过滤文档,这些标记都存储在具有多对多关系的数据库中。
模型看起来像:
public Document extends Model {
....
@ManyToMany
public List<Tag> tagList;
public static findDocumentsByTags(List<Tag> tags)
{
// Here i need help.....
}
}
我如何从数据库中获取文档列表?saveManyToManyAssociations 正确保存了所需的数据,并且数据库看起来很好。只需要ebean的功能
感谢您的支持