Any chance that changing one property on an entity through databinding would effect the databinding on another control that binds to a different property?
Example:
I have an entity "ActualJobTask" that has its properties bound to various controls on a form. In this case we'll say that the properties are "MetContract", "CrewName", and "ConsistName".
MetContract is bound to a checkbox
CrewName is bound to a textbox
ConsistName is bound to a textox
It's random and sometimes difficult to reproduce, but if I change one property via its bound control one or both of the others may blank out. Also, if I then check the underlying property values, it shows them as empty strings (at least for the string properties). In the call stack, the last code that gets executed before the controls get cleared (not counting "non-user" code) is the entitybase property changed event firing like "ActualJobTaskEntityBase_MetContractChanged.
I can't find any other information that would be helpful; it's just simple databinding. However, I was wondering when/if/somehow the entity gets refreshed and databound values that haven't been persisted yet get written over for some reason.
I'll continue to work on it and update this with more info if/when I find it...
Thanks,
Jeff...