Spring-data-jpaとquerydsl(3.2.3)を使用しています
ユーザーファイラー/入力に基づいて述語のセットを作成しているシナリオがあります。これらはすべてBooleanExpression
に提供されます。
私の簡略化したモデルは次のようになります。
@Entity
public class Invoice {
@ManyToOne
private Supplier supplier;
}
@Entity
public class Supplier {
private String number;
}
@Entity
public class Company {
private String number;
private boolean active
}
今、私が苦労しているのはこのクエリです:
SELECT * FROM Invoice WHERE invoice.supplier.number in (SELECT number from Company where active=true)
したがって、基本的に私はCollectionExpression
のような形式でサブクエリを実行して、すべての会社の番号をフェッチし、これをin()式に設定する必要があります。
私の春のデータリポジトリはCustomQueryDslJpaRepository
を実装し、JpaRepository
とQueryDslPredicateExecutor
を拡張しています。
これに対する答えが簡単であることを願っていますが、私はquerydslに非常に慣れていないため、これまでのところ解決策は見つかりませんでした。
これは、よりJPAesque形式のjaiwo99の答えの変形です
BooleanExpression exp = invoice.supplier.number.in(new JPASubQuery()
.from(company)
.where(company.active.isTrue())
.list(company.number));
これを元の回答に自由に組み合わせてください。
これを試して:
QInvoice invoice = QInvoice.invoice;
QCompany company = QCompany.company;
List<Invoice> list = new HibernateQuery(sessionFactory.getCurrentSession())
.from(invoice).where(
new HibernateSubQuery().from(invoice, company).where(
invoice.supplier.number.eq(company.number).and(
company.active.eq(true))).exists()).list(invoice);