or 方法用于完成两个表达式的“逻辑或”操作。
语法:
or(Criterion lhs,Criterion rhs)
参数说明:
- lhs:用于指定第一个表达式。
- rhs:用于指定第二个表达式。
返回值:LogicalExpression 类的对象,LogicalExpression 类为 Criterion 接口的实现类。
示例
查询学历为“大专”或者工龄大于 5 的员工信息,关键代码如下:
Criteria criteria = session.createCriteria(PersonForm.class); //定义Criteria对象 criteria.add(Restrictions.or(Restrictions.eq("knowledge","大专"), Restrictions.gt("workAge",5))); //定义查询语句 list = criteria.list(); //执行查询语句返回list集合
原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/22919.html