.hbm.xml に sql-query ローダーを使用したコレクション マッピングがあります。
`<sql-query name="conpoints">
<load-collection alias="conpoint" role="Substation.ConnectionPoints" />
SELECT {conpoint.*}
FROM CONNECTIONPOINT AS conpoint
WHERE (conpoint.substationID=:Id AND NOT conpoint.ID=:ReceiverConnectionPoint.Id)
</sql-query>`
Id と ReceiverConnectionPoint.Id パラメータの両方を渡す必要があります。しかし、NH はそのうちの 1 つしか取りません。SQLクエリで複数のパラメータを渡す方法は?