我有这个代码
Expression expRefr = new ExpressionBuilder();
expRefr = expRefr.and(new ExpressionBuilder().get("refrCd").equal(referenza));
expRefr = expRefr.and(new ExpressionBuilder().get("enteCd").equal(pEnteCd));
expRefr = expRefr.and(new ExpressionBuilder().get("dpCdTipo").equal("V"));
final ReportQuery refrQuery =
new ReportQuery(BoEnteRefrPrmz.class, expRefr);
我需要在WHERE条件中添加
dpDtFineVald>= TRUNC(sysdate)
子句,我该怎么办?就像是
expRefr =
expRefr.and(new ExpressionBuilder().get("dpDtFineVald").greaterThanEqual(//What should i put here?);
最佳答案
我不知道toplink或Expression。我只是用从Google获得的东西尝试了这一点。请检查。
String format = "MM/dd/yyyy";
expRefr = expRefr.and(new ExpressionBuilder().get("dpDtFineVald").truncateDate(format).greaterThanEqual(new ExpressionBuilder().currentDate().truncateDate(format));
关于java - 如何使用ExpressionBuilder将“myfields> = TRUNC(sysdate)”子句添加到ReportQuery(Toplink),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8851321/