0
我正在嘗試爲Rental
編寫HQL,該關係具有多對多關聯PaymentTypes
。任何關聯的HQL
from rental
where not exists(
from PaymentTypes pt where pt.Owner = :rental and type = 'Visa'
)
Owner
是任何關聯,其中OwnerId
是rental.Id
和OwnerType = 'Rental'
不幸的是我不能使用SetEntity
作爲預取的租金,然後調用SetEntity
將是非常昂貴的。
動態查詢不幸的是,這是一個現有的非常複雜的HQL查詢,我想只是添加另一個條件。 – 2013-02-26 10:05:54