Here's my scenario:
- I have a simple message that is passed in via WCF. this message represents an existing database record and has all of the datafields required to do my calculation.
- Once I'm done with my calculation, I want to update one field on this datarecord.
Currently, attempting to simply set all of the fields of the Entity framework's version of the entity and then persisting the object context's state seems to do nothing.
any thoughts?