Quite a common use case, it seems, is when re-populating an object from a form is to go
myobj.Name = "textbox value";
myobj.Content = "textbox content";
But, name may not have changed, it may only be a change to the content textbox.
The problem is that entity framework treats Name as changed just because I've set it's value, regardless of whether I've set exactly the same value or not.
Ideally, I would like EF to only mark things as changed if they genuinely have changed. Is this possible?