如何编写这个 grails 可搜索查询
在 grails 项目中,某些域类具有“region”字段(不是全部)。登录的用户属于某一区域。我想搜索那些对象 1- 没有区域字段或 2-他们的区域字段等于当前用户的区域
如何处理?
In a grails project, some of the domain classes have a "region" field (not all of them). The logged in user is belonged to one the regions. I want to search those objects that
1- Does not have a region field OR
2- Their region field is equal to current user's region
How to handle this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我用另一种方法解决了这个问题。我在区域中使用了具有特殊唯一值的属性,并将其添加到搜索查询中。
I solved it by an alternative method. I used a property with special unique value on region and added it to search query.