Re: how to use selectKey where property is an object ‏

2010-05-20 Thread Juan Pablo Araya
As far as I know you have two choices: 1. Set another property for Event class: Public IdInserted { get { return Identifier.Id; } set { Identifier.Id = value; } } - null reference if Identifier is not instanced. 2. Create an insert procedure and pass the class for parameterMap, setting the

Re: iBatis.Net future release

2010-05-20 Thread Juan Pablo Araya
Thanks Ted. I had no idea about jira. Now I registered and hope to understand it an soon can contribute to the community. Greetings and sorry for my poor english 2010/5/12 Ted Husted hus...@apache.org: ASF projects are always looking for new contributors. Two of the best articles are getting

Re: how to use selectKey where property is an object‏

2010-05-20 Thread wekasalim
Hmm that's not a bad idea for workaround :) should resolve my problem. Thanks! Juan Pablo Araya wrote: As far as I know you have two choices: 1. Set another property for Event class: Public IdInserted { get { return Identifier.Id; } set { Identifier.Id = value; } } - null reference