Examples of greatest()


Examples of javax.persistence.criteria.CriteriaBuilder.greatest()

    public ISODate getMostRecentRequestDate() {
        final CriteriaBuilder cb = _EntityManager.getCriteriaBuilder();
        final CriteriaQuery<ISODate> query = cb.createQuery(ISODate.class);
        final Root<SearchRequest> requestRoot = query.from(SearchRequest.class);

        query.select(cb.greatest(requestRoot.get(SearchRequest_.requestDate)));

        return _EntityManager.createQuery(query).getSingleResult();
    }

    @Override
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.