17
14

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

JPAのCriteria QueryでIN句を指定する

Posted at
final EntityManager em = getEntityManager();
final CriteriaBuilder builder = em.getCriteriaBuilder();
final CriteriaQuery<EPet> query = builder.createQuery(EPet.class);
final Root<EPet> root = query.from(EPet.class);
query.where( //
    root.get(EPet_.category).in(categories) //
);

これははまる。CriteriaBuilderを使わないってところに。
ここを見て解決。

17
14
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
17
14

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?