RT,
SqlExpressionGroup e1 = Cnd.cri().where().andEquals("sex",sex).andEquals("city",city);
List<District> districts = dao.query(User.class, Cnd.where(e1));
代码是这么写的,如果前台不给city参数,就是city传过来是null,我希望跳过这个判断,没有where city=?这个条件,类似于mybatis的
<if test="city != null">
AND CITY = #{city}
</if>
啥时候能实现