2

我是 Querydsl 的新手,所以这个问题对你们中的一些人来说可能很愚蠢:)

这是我想做的事情:

QAppt qApptRqst = QAppt.apptRqst;
QLocZip qLocZip = QLocZip.locZip;

JPAQuery query = new JPAQuery(em);

JPAUpdateClause upd = new JPAUpdateClause(em, qApptRqst);
upd.where(qApptRqst.apptRqstStatusRef.apptRqstStatusCd.eq("U"),
qApptRqst.applZip5Cd.eq(qLocZip.usZip5Cd))
   .set(qApptRqst.uscisLocation.uscisLocCd, qLocZip.uscisLocCd)
   .execute();

我有以下例外:

"java.lang.IllegalArgumentException: Undeclared path 'locZipJuris'. Add this path as a source to the query to be able to reference it."

如何将JPAUpdateClause与多个源一起使用?

4

2 回答 2

1

您可以在更新语句中使用子查询,如下所示。

upd.set(qApptRqst.xx, new JPASubQuery().from(qLocZip).where(qLocZip.usZip5Cd.eq(qApptRqst.applZip5Cd)).unique(qLocZip.locCd))
             .where((qApptRqst.apptRqstStatusRef.eq("NA")))
             .execute();
于 2013-10-24T21:19:40.467 回答
0

JPA 仅支持 DML 更新的单一来源,在您的情况下,子查询可能会起作用。

于 2013-06-08T20:06:46.367 回答