After an entity has completed saving in the OnSaveComplete() event, how can I tell if the object was created or updated in that save?
Ian
I think it would be too late to know.
Why don't you use OnSave() event (an event that occurs before the save)?
I need to do something after the time is in the DB, but only when it's known to be new.
I'll just call the code after I call the entity.Save() in the calling code.