我在 .hbm.xml 中有使用 sql-query loader 的集合映射:
`<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只接受其中之一。如何在sql-query中传递多个参数?