Hi guys,

I want to use selectKey to get the inserted id, however the property of the
id on my class (Event) is actually an object as well. The name is Identifier
and it has int property named Id. The following does not work:

  <insert id="InsertEvent" parameterClass="Event">
      INSERT INTO nxEvent
      (Title, Time)
      VALUES
      (#Title#, #Time#)
      <selectKey resultClass="int" type="post" property="Identifier.Id" >
        select @@IDENTITY as value
      </selectKey>
  </insert>

It says Event does not have Set member for 'Identifier.Id' Is there a way to
do this?

Thanks,
Willy
-- 
View this message in context: 
http://old.nabble.com/how-to-use-selectKey-where-property-is-an-object%E2%80%8F-tp28615389p28615389.html
Sent from the iBATIS - User - Cs mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: user-cs-unsubscr...@ibatis.apache.org
For additional commands, e-mail: user-cs-h...@ibatis.apache.org

Reply via email to