How to convert this query into HQL?
select a.* from dbo.BFProdAttrAssociation a
join
(
select productId
from
dbo.BFProdAttrAssociation where attributeId =7 and [Value]='Hindi'
) b on a.productid=b.productid
where a.attributeId=10 and a.[Value]='Romance'
Please help me..
Table BFProdAttrAssociation
id int;
productid int;
attributeid int;
value varchar(max);
where productid is linked to bfproduct and attributeid is linked to bfattribute
