For other reasons, i've had to create my own property in an Entity in the ORM, which has is a type of another entity (had issues with associations so did it this way instead).
The problem is that whenever I make a change to that property, it isn't being flagged as a change so I cannot call SubmitChanges on it.
So basically my question is, is there a way of forcing a property to be tracked for changes for when I call SubmitChanges?
thanks.