I am using EF5 in a disconnected manner. I have a main table called Cases with lookup tables for various things with associations defined. For example, the column SOURCE_ID is associated with a Sources table, where that table contains the lookups.
In the entity for Cases I have the Source_ID column as well as the association and navigation property called Source to navigate to the associated table.
Since I am using things in a disconnected manner, when I want to save the entity, I manually set the state from Added to Modified. This works well (following some examples in Julie Lermon's book).
What happens though is that if I change the SOURCE_ID column to a different value and the associated table was loaded with the entity, when I change the state to MODIFIED, the SOURCE_ID reverts back to the original value, presumably because of the association.
I am loading the associated SOURCES table because I want to display other stuff from that table, but I simply want to change the SOURCE_ID and save it. It seems not to like that.
Any thoughts?