public ListfetchYesterdayGames() { DetachedCriteria dc = DetachedCriteria.forClass(TeamGame.class); dc.setFetchMode("game", FetchMode.JOIN); DetachedCriteria dcGame = dc.createCriteria("game"); dcGame.add(Expression.lt("startDate", new Date())); dc.add(Expression.isNull("headline")); List teamGames = getHibernateTemplate().findByCriteria(dc); return teamGames; }
This notebook is a collection of code snippets and technical "how to" instructions.
Search This Blog
Hibernate DetachedCriteria
by: Zainab Aziz
Example with the JOIN:
related #tags:
Hibernate
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment