NHibernate version: 1.02
In (java) Hibernate one can specify a 'optimistic-lock' attribute for a persistent collection
i.e.
Code:
<map
name = "items"
...
optimistic-lock="true|false"
</map>
This attribute allows you to specify if changes to the state of the collection have to result in increment of the owning entity's version.
For some of my one to many associations, I don't want this increment to happen so I want to be able to set this attribute to 'false'
Is this supported in NHibernate ?
I'm getting the message: The 'optimistic-lock' attribute is not declared
Thanks in advance
[/b]