Hi there,
The Best Practices say that to set a property on an existing entity to null then one does something like this..
entity.SetNewFieldValue((int)NewsFieldIndex.NewsSectorId, null);
I have found that I need an extra assignment in order to get the the null value saved.
NewsEntity entity = new NewsEntity(myid);
entity.IsNew = false;
entity.NewsSectorId = 1;
entity.SetNewFieldValue((int)NewsFieldIndex.NewsSectorId, null);
Is this normal?
Cheers, I.