我正在尝试为Rental
具有多对任意关联的HQL 编写PaymentTypes
。
from rental
where not exists(
from PaymentTypes pt where pt.Owner = :rental and type = 'Visa'
)
Owner
是任何关联,其中OwnerId
isrental.Id
和OwnerType = 'Rental'
不幸的是,我不能SetEntity
用作预取租金然后打电话SetEntity
会非常昂贵。