Given I have a scenario where two users are editing different address object at the same time.*
User 1 edits address.streetname only and saves and User 2 edits address.town and saves.
Is there anyway I can configure nhibernate so that only the changed fields are updated and thus the changes are merged?
I have tied dynamic-update, but his doesnt do the trick, its more an optimization technique.
dynamic-update="true"
I also experimented with version but this does not seem to have the desired effect.
<version name="Version" type="int" column="Version"/>
- I appreciate this is a weird scenario, but it is the requirement I was given.