Hi,
Is it possible to have a field on an entity which is not written to on an update but which is written to on an insert?
For example, a user entity might have a password field but you don't want to write to this when a user is updating their details because changing the password would be done on a different page.
So, I want to create a new User object which will represent an existing user and call save on it and not have to specify the current password value - its just left uneffected in the DB. But when I create a new User object for a new user, I need to specify the password and it will go in with the insert.
Cheers, I.