- Person.withCriteria {
- or {
- and {
- eq 'lastName', 'Winter'
- eq 'firstName', 'Johnny'
- }
- and {
- eq 'lastName', 'brown'
- eq 'firstName', 'Jeff'
- }
- }
- }
上面的语言将对应如下sql语句
-
select
- this_.id as id0_0_,
- this_.version as version0_0_,
- this_.last_name as last3_0_0_,
- this_.first_name as first4_0_0_
-
from
- person this_
-
where
- (
- (
- this_.last_name='Winter'
- and this_.first_name='Johnny'
- )
- or (
- this_.last_name='brown'
- and this_.first_name='Jeff'
- )
- )
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。