I was hoping to get an answer on this, even if it's a 'not implemented - contributions are welcome'. I am externalizing some queries that were in java code and had comments from the query creators, and I'd like to preserve those comments. Essentially I'd like to be able to do something like this:
Code:
<query name="mytable.byothercolumn">
<![CDATA[
from MyTable as mytable
where mytable.SomeColumn = :val
-- HERE I WOULD LIKE TO ADD A COMMENT
and mytable.OtherColumn = :otherval
]]>
</query>
I just want to make sure that this is indeed NOT implemented, and I am not just overlooking something. Thanks.