Tôi nghĩ rằng bạn đang yêu cầu 3 Deliverable
hàng đầu s từ Task
đặt hàng theo ID. Bạn có thể thử một cái gì đó như thế này:
Chỉnh sửa: Được rồi, tôi sẽ đâm thêm một nhát vào cái này. Điều này sẽ cung cấp cho bạn 3 Deliverable
hàng đầu được đặt hàng bởi Task.id
chỉ lấy Deliverable
được liên kết với max(Task.id)
deliverables =
(List<Deliverable>) session.createQuery(
"from Deliverable as d, Task as t
where t.deliverable.id = d.id and
t.id = (select max(t1.id) from Task t1 where t1.deliverable.id = d.id)
and d.project.id= :id
and t.user.username = :name
order by t.id desc")
.setMaxResults(3)
.setLong("id", projectId)
.setString("name", username)
.list();