方式一
通过表达式判断:
boolean existed = testService.exists( new Express(Test.T_TYPE, 1, ExpressionType.CDT_Equal), new Express(Test.T_NAME, "abc", ExpressionType.CDT_Equal)); |
方式二:
通过Terms,构建更复杂的条件判断:
boolean existed = testService.exists(new Terms().or().and().orAnd()...); |