Hibernate and mssql inner join rowcount
- by ez2sarang
I am struggling with Hibernate Criteria. My aim is to create the following request using Hibernate Criteria :
select
count(*) as y0_
from
PInterface this_
inner join
Product product2_
on this_.product_id=product2_.id
where
this_.product_interface_type_id=?
Here is my code:
@Entity @Table(name = "PInterface")
public…