Ne tür classle işlem yapacağımızı belirtiyoruz.
ve skısıtlamalarımızı giriyoruz.
employmentList.addAll((List) hibernateSession
.createCriteria(Employment.class)
.add(Restrictions.in("employer", "ABC"))
.add(Restrictions.or(Restrictions.isNull("till"),Restrictions.ge("till", endDate.getTime())))
.add(Restrictions.le("since", endDate.getTime()))
.list());
.
.
Hiç yorum yok:
Yorum Gönder