如何在 Grails/GORM 映射中要求特定列的值?
我有一个与旧数据库一起使用的 Grails 应用程序。
我几乎在所有表中都有一列,比方说include
。当且仅当该列具有非零值时,我想在查询结果中包含此类实体。
有没有办法在 grails 中的每个类/应用程序标准上指定这一点,也许在静态映射块中?目前,每当进行数据库查询时,我都会指定 AND include == 1
。
I have a grails application which works with a legacy database.
I have in almost all tables a column, let's say include
. I want to include such entities in query results if and only if this column has a nonzero value.
Is there any way for specifying this on a per class / application criteria in grails, perhaps in a static mappings block? Currently I'm I specifying AND include == 1
whenever I make a database query.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为这个插件将满足您的需求。
I think this plugin will get you what you need.