我有两个对象 - 汽车和颜色。每辆车都有一套颜色。在数据库中,我有三个表Car,Car_color和Color。
我有sql-query -
select min(color.id)
from car
join car_colors
on car.id = car_color.car
join color
on car_color.color = color.id
where car.id = 28;
如何使用Criteria API获取有关对象的数据。
真的是你的,Nafanya。